Guest User

Untitled

a guest
Nov 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #ifndef MYCLASS_H_
  2. #define MYCLASS_H_
  3.  
  4. #include "OOOCode.h"
  5. #include "IMyInterface.h"
  6.  
  7. #define OOOClass MyClass
  8. OOODeclare(int nMyField)
  9. OOOImplements
  10. OOOImplement(IMyInterface);
  11. OOOImplementsEnd
  12. OOOExports
  13. OOOExport(int, getMyField);
  14. OOOExport(MyClass *, copy);
  15. OOOExport(bool, isEqual, MyClass * pCompare);
  16. OOOExportsEnd
  17. OOODeclareEnd
  18. #undef OOOClass
  19.  
  20. #endif
Add Comment
Please, Sign In to add comment