As titles says, is there a way to do something like:
typedef vector<int> ListInt;
string ListInt::GetSomeValue() { //Add method to 'ListInt'
return "value";
}
int ListInt::SomeField; //Add field\variable to 'ListInt'
Without inheritance and etc. (To reduce compilation time)
Sorry for the short message, but I think it’s enough.
Address to
SomeFieldasListInt::SomeFieldand address toGetSomeValueasListInt::GetSomeValue.Example: