Advertisement
Guest User

Untitled

a guest
Nov 24th, 2011
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. np_vtable_fwd.h
  2.  
  3. #ifndef NP_VTABLE_FWD
  4. typedef struct np_vtable np_vtable;
  5. #define NP_VTABLE_FWD
  6. #endif
  7.  
  8. np_vtable.h
  9.  
  10. #include "np_vtable_fwd.h"
  11. struct np_vtable {
  12. // blah blah
  13. };
  14. // blah blah
  15.  
  16. classobject.h
  17.  
  18. #include "np_vtable_fwd.h"
  19. // blah blah
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement