Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class CBase
  2. {
  3. public:
  4. CBase(LPCTSTR pszArg1, LPCTSTR pszArg2, LPCTSTR pszArg3);
  5. virtual ~CBase();
  6. }
  7.  
  8. class CDerived : CBase
  9. {
  10. }
  11.  
  12. CDerived::CDerived(LPCTSTR pszArg1, LPCTSTR pszArg2, LPCTSTR pszArg3)
  13. : CBase(pszArg1, pszArg2, pszArg3)
  14. {
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement