diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
commit | 8014f25f6db719fa62336f997963532a14c568f6 (patch) | |
tree | c691ee91a3a2d452a2bd24ac89a8c717beaa7af7 /src/map/super | |
parent | c44cc5de9429e6b4f1c05045fcf43c9cb96437b5 (diff) | |
download | abc-8014f25f6db719fa62336f997963532a14c568f6.tar.gz abc-8014f25f6db719fa62336f997963532a14c568f6.tar.bz2 abc-8014f25f6db719fa62336f997963532a14c568f6.zip |
Major restructuring of the code.
Diffstat (limited to 'src/map/super')
-rw-r--r-- | src/map/super/super.c | 4 | ||||
-rw-r--r-- | src/map/super/super.h | 4 | ||||
-rw-r--r-- | src/map/super/superInt.h | 14 |
3 files changed, 11 insertions, 11 deletions
diff --git a/src/map/super/super.c b/src/map/super/super.c index 2cc52a44..2cbf0718 100644 --- a/src/map/super/super.c +++ b/src/map/super/super.c @@ -17,8 +17,8 @@ ***********************************************************************/ #include "superInt.h" -#include "mainInt.h" -#include "mio.h" +#include "src/base/main/mainInt.h" +#include "src/map/mio/mio.h" ABC_NAMESPACE_IMPL_START diff --git a/src/map/super/super.h b/src/map/super/super.h index 246ea092..e2af9a85 100644 --- a/src/map/super/super.h +++ b/src/map/super/super.h @@ -16,8 +16,8 @@ ***********************************************************************/ -#ifndef __SUPER_H__ -#define __SUPER_H__ +#ifndef ABC__map__super__super_h +#define ABC__map__super__super_h //////////////////////////////////////////////////////////////////////// diff --git a/src/map/super/superInt.h b/src/map/super/superInt.h index 0d4215ff..63df0f38 100644 --- a/src/map/super/superInt.h +++ b/src/map/super/superInt.h @@ -16,19 +16,19 @@ ***********************************************************************/ -#ifndef __super_INT_H__ -#define __super_INT_H__ +#ifndef ABC__map__super__superInt_h +#define ABC__map__super__superInt_h //////////////////////////////////////////////////////////////////////// /// INCLUDES /// //////////////////////////////////////////////////////////////////////// -#include "abc.h" -#include "mainInt.h" -#include "mvc.h" -#include "mio.h" -#include "stmm.h" +#include "src/base/abc/abc.h" +#include "src/base/main/mainInt.h" +#include "src/misc/mvc/mvc.h" +#include "src/map/mio/mio.h" +#include "src/misc/st/stmm.h" #include "super.h" ABC_NAMESPACE_HEADER_START |