like this...
Code:
A XYZ
^ ^
| |
---------------
|
|
B
A has a datamamber
class
{
protected:
C options;
public:
C optionsPublic;
};
B has a function start();
of the C...Like this
Code:
class C
{
class D
{
};
typedef vector<D*> optionlist;
protected:
oprionlist optionlistvector;
};
where it is updating the "vector optionlistvector"...
my question is....
How to use the optionlistvector???....its values???....using the following information....
If you want any please let me know....I think i need to learn about instances....

