thenuke321

Untitled

Dec 4th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. // For Jaffa
  2. theothercpp.cpp
  3.  
  4. void lol()
  5. {
  6.  
  7. }
  8.  
  9.  
  10. theothercppheaderfile.h
  11.  
  12. #ifndef _theothercppheaderfile.h_
  13. #define _theothercppheaderfile.h_
  14. #include "theothercpp.cpp"
  15.  
  16.     void lol();
  17. #endif
  18.  
  19.  
  20.  
  21. main.cpp
  22.  
  23. #include "theothercppheaderfile.h"
  24.  
  25. void main ()
  26. {
  27.     lol();
  28. }
Advertisement
Add Comment
Please, Sign In to add comment