diff options
author | David Robillard <d@drobilla.net> | 2010-02-01 19:06:23 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-01 19:06:23 +0000 |
commit | feb7439d70871aa9663e7c4218671a3c26717fbb (patch) | |
tree | 50257d9478959e1c4101ac1914942da12a0fefb9 /src/serialisation | |
parent | 0fdb802920e1fce6ed64d9fe7d54f39ee0adbc90 (diff) | |
download | ingen-feb7439d70871aa9663e7c4218671a3c26717fbb.tar.gz ingen-feb7439d70871aa9663e7c4218671a3c26717fbb.tar.bz2 ingen-feb7439d70871aa9663e7c4218671a3c26717fbb.zip |
Use consistent and more globally unique inclusion guards.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2398 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/Parser.hpp | 6 | ||||
-rw-r--r-- | src/serialisation/Serialiser.hpp | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/serialisation/Parser.hpp b/src/serialisation/Parser.hpp index 99c6dc81..0ce81e37 100644 --- a/src/serialisation/Parser.hpp +++ b/src/serialisation/Parser.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef LOADER_H -#define LOADER_H +#ifndef INGEN_SERIALISATION_LOADER_HPP +#define INGEN_SERIALISATION_LOADER_HPP #include <string> #include <glibmm/ustring.h> @@ -117,4 +117,4 @@ private: } // namespace Serialisation } // namespace Ingen -#endif // LOADER_H +#endif // INGEN_SERIALISATION_LOADER_HPP diff --git a/src/serialisation/Serialiser.hpp b/src/serialisation/Serialiser.hpp index 2515417e..b4e148e1 100644 --- a/src/serialisation/Serialiser.hpp +++ b/src/serialisation/Serialiser.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SERIALISER_H -#define SERIALISER_H +#ifndef INGEN_SERIALISATION_SERIALISER_HPP +#define INGEN_SERIALISATION_SERIALISER_HPP #include <map> #include <utility> @@ -125,4 +125,4 @@ private: } // namespace Serialisation } // namespace Ingen -#endif // SERIALISER_H +#endif // INGEN_SERIALISATION_SERIALISER_HPP |