Advertisement
Guest User

Untitled

a guest
Apr 26th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.75 KB | None | 0 0
  1. ~/Desktop/test$ tree -L 3
  2. .
  3. ├── GPATH
  4. ├── GRTAGS
  5. ├── GSYMS
  6. ├── GTAGS
  7. ├── include
  8. │   └── Test.h
  9. └── src
  10.     └── main.cpp
  11.  
  12. 2 directories, 7 files
  13.  
  14. -----------------------------------------------------------------  
  15.  
  16.     //Path: /test/include/Test.h
  17.     #ifndef TEST_H
  18.     #define TEST_H
  19.      
  20.     typedef struct testStruct{
  21.         int a;
  22.         char blah_blah;
  23.         double context;
  24.     };
  25.      
  26.     #endif
  27.      
  28.  -----------------------------------------------------------------
  29.    
  30.     //Path: /test/src/main.cpp
  31.     #include <iostream>
  32.     #include "Test.h"
  33.      
  34.     using namespace std;
  35.      
  36.     int main(int argc, char **argv)
  37.     {
  38.       Test myTest;
  39.      
  40.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement