Advertisement
Bruce314

class2.hpp

Nov 17th, 2011
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #ifndef TTTTT
  2. #define TTTTT
  3.  
  4. class C {
  5. public:
  6.   virtual int CMethod(int x)=0;
  7. };
  8.  
  9. class Test{
  10. public:
  11.   int test(C* x,int y);
  12. };
  13.  
  14. #endif
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement