i want my data can be used over every function, so i need a class to capture them, am i correct??
here is my outline, im not sure if i use it correctly, please help!!
class CLASS
{
private:
int * (something)
string * (something)
public:
void (function) ()
};
void CLASS::(function)
{
}
int main()
{
int * (something)
string * (something)
(something) = new int[size]
(something) = new string[size]
}