Guest User

Untitled

a guest
Jun 14th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. app.cpp
  2.  
  3. #include "other_class.h"
  4. #include <mylib_class_a.h> // using library MyLib
  5.  
  6. app.cpp
  7.  
  8. #include "util.h" // private util.h file
  9. #include <ProjA/app/other_class.h> // public header file
  10. #include <ProjA/mylib/class_a.h> // using class_a.h of mylib
  11. #include <other3rdptylib/class_a.h> // class_a.h of other3rdptylib, no name collision
  12. #include <class_a.h> // not ProjA/mylib/class_a.h
  13. #include <ProjA/mylib/library_private_helpers.h> // error can't find .h
  14.  
  15. #include <MyLib/ClassA.h>
Add Comment
Please, Sign In to add comment