mirror of
https://github.com/isledecomp/SIEdit.git
synced 2025-07-29 15:18:57 -04:00
fix ifdef guards
This commit is contained in:
parent
420eee4e98
commit
57ca19e6a7
9 changed files with 27 additions and 27 deletions
|
@ -1,5 +1,5 @@
|
|||
#ifndef CORE_H
|
||||
#define CORE_H
|
||||
#ifndef __LIBWEAVER_CORE_H
|
||||
#define __LIBWEAVER_CORE_H
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
@ -47,4 +47,4 @@ private:
|
|||
|
||||
}
|
||||
|
||||
#endif // CORE_H
|
||||
#endif // __LIBWEAVER_CORE_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef FILE_H
|
||||
#define FILE_H
|
||||
#ifndef __LIBWEAVER_FILE_H
|
||||
#define __LIBWEAVER_FILE_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
|
@ -108,4 +108,4 @@ private:
|
|||
|
||||
}
|
||||
|
||||
#endif // FILE_H
|
||||
#endif // __LIBWEAVER_FILE_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef INFO_H
|
||||
#define INFO_H
|
||||
#ifndef __LIBWEAVER_INFO_H
|
||||
#define __LIBWEAVER_INFO_H
|
||||
|
||||
#include "core.h"
|
||||
|
||||
|
@ -51,4 +51,4 @@ private:
|
|||
|
||||
}
|
||||
|
||||
#endif // INFO_H
|
||||
#endif // __LIBWEAVER_INFO_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef INTERLEAF_H
|
||||
#define INTERLEAF_H
|
||||
#ifndef __LIBWEAVER_INTERLEAF_H
|
||||
#define __LIBWEAVER_INTERLEAF_H
|
||||
|
||||
#include <fstream>
|
||||
|
||||
|
@ -74,4 +74,4 @@ private:
|
|||
|
||||
}
|
||||
|
||||
#endif // INTERLEAF_H
|
||||
#endif // __LIBWEAVER_INTERLEAF_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef OBJECT_H
|
||||
#define OBJECT_H
|
||||
#ifndef __LIBWEAVER_OBJECT_H
|
||||
#define __LIBWEAVER_OBJECT_H
|
||||
|
||||
#include "core.h"
|
||||
#include "sitypes.h"
|
||||
|
@ -74,4 +74,4 @@ private:
|
|||
|
||||
}
|
||||
|
||||
#endif // OBJECT_H
|
||||
#endif // __LIBWEAVER_OBJECT_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef OTHERTYPES_H
|
||||
#define OTHERTYPES_H
|
||||
#ifndef __LIBWEAVER_OTHERTYPES_H
|
||||
#define __LIBWEAVER_OTHERTYPES_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
|
@ -96,4 +96,4 @@ public:
|
|||
|
||||
}
|
||||
|
||||
#endif // OTHERTYPES_H
|
||||
#endif // __LIBWEAVER_OTHERTYPES_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef SI_H
|
||||
#define SI_H
|
||||
#ifndef __LIBWEAVER_SI_H
|
||||
#define __LIBWEAVER_SI_H
|
||||
|
||||
#include <fstream>
|
||||
|
||||
|
@ -254,4 +254,4 @@ public:
|
|||
|
||||
}
|
||||
|
||||
#endif // SI_H
|
||||
#endif // __LIBWEAVER_SI_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef TYPES_H
|
||||
#define TYPES_H
|
||||
#ifndef __LIBWEAVER_TYPES_H
|
||||
#define __LIBWEAVER_TYPES_H
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdio>
|
||||
|
@ -212,4 +212,4 @@ private:
|
|||
|
||||
}
|
||||
|
||||
#endif // TYPES_H
|
||||
#endif // __LIBWEAVER_TYPES_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef UTIL_H
|
||||
#define UTIL_H
|
||||
#ifndef __LIBWEAVER_UTIL_H
|
||||
#define __LIBWEAVER_UTIL_H
|
||||
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
@ -25,4 +25,4 @@ inline std::ostream &LogError()
|
|||
|
||||
}
|
||||
|
||||
#endif // UTIL_H
|
||||
#endif // __LIBWEAVER_UTIL_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue