Advertisement
tinyevil

Untitled

Dec 27th, 2018
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class Y{
  2. public:
  3. Y(){
  4. }
  5.  
  6. ~Y(){
  7. }
  8. };
  9.  
  10. class __declspec(dllexport) X{
  11. public:
  12. X(){
  13. }
  14. private:
  15. Y y;
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement