source: git/README @ 5ebd4bc

spielwiese
Last change on this file since 5ebd4bc was 43ab88, checked in by Hans Schoenemann <hannes@…>, 14 years ago
rules for include files
  • Property mode set to 100644
File size: 546 bytes
Line 
1Rules for inlude files:
2- include files from the current subdir via #include "abc.h"
3- include header from other subdirs vai #include <def.h>
4  ( do NOT use a specific path - this may change!)
5- include privtae header files via path: #include "../other_dir/ppp.h"
6  - should be avoided!
7
8Classes of files
9- public header:
10  - should be installed at a central place ($includedir)
11  - should itself only include other public headers
12- private header:
13  - will not be installed at other places
14  - will (usually) only be included from that subdir
15
Note: See TracBrowser for help on using the repository browser.