Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Aclass {
  2. public:
  3. int x1;
  4. }
  5.  
  6.  
  7. class IAclass { //IA is interface of A
  8.  
  9. }
  10.  
  11. class Bclass {
  12. private
  13. IAclass * a[5];
  14.  
  15. void Bfunction(){ a[1]->x1;}
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement