summaryrefslogtreecommitdiffstats
path: root/src/common/interface
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-02-01 19:06:23 +0000
committerDavid Robillard <d@drobilla.net>2010-02-01 19:06:23 +0000
commitfeb7439d70871aa9663e7c4218671a3c26717fbb (patch)
tree50257d9478959e1c4101ac1914942da12a0fefb9 /src/common/interface
parent0fdb802920e1fce6ed64d9fe7d54f39ee0adbc90 (diff)
downloadingen-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/common/interface')
-rw-r--r--src/common/interface/ClientInterface.hpp4
-rw-r--r--src/common/interface/CommonInterface.hpp6
-rw-r--r--src/common/interface/Connection.hpp6
-rw-r--r--src/common/interface/EngineInterface.hpp6
-rw-r--r--src/common/interface/EventType.hpp6
-rw-r--r--src/common/interface/GraphObject.hpp6
-rw-r--r--src/common/interface/MessageType.hpp6
-rw-r--r--src/common/interface/Node.hpp6
-rw-r--r--src/common/interface/Patch.hpp6
-rw-r--r--src/common/interface/Plugin.hpp6
-rw-r--r--src/common/interface/PortType.hpp6
-rw-r--r--src/common/interface/Resource.hpp6
12 files changed, 35 insertions, 35 deletions
diff --git a/src/common/interface/ClientInterface.hpp b/src/common/interface/ClientInterface.hpp
index 9ec875ac..676c7eb6 100644
--- a/src/common/interface/ClientInterface.hpp
+++ b/src/common/interface/ClientInterface.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef CLIENTINTERFACE_H
-#define CLIENTINTERFACE_H
+#ifndef INGEN_INTERFACE_CLIENTINTERFACE_HPP
+#define INGEN_INTERFACE_CLIENTINTERFACE_HPP
#include <stdio.h>
#include <string>
diff --git a/src/common/interface/CommonInterface.hpp b/src/common/interface/CommonInterface.hpp
index d13ef97c..aa8b404c 100644
--- a/src/common/interface/CommonInterface.hpp
+++ b/src/common/interface/CommonInterface.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef COMMONINTERFACE_H
-#define COMMONINTERFACE_H
+#ifndef INGEN_INTERFACE_COMMONINTERFACE_HPP
+#define INGEN_INTERFACE_COMMONINTERFACE_HPP
#include <inttypes.h>
#include <string>
@@ -75,5 +75,5 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // COMMONINTERFACE_H
+#endif // INGEN_INTERFACE_COMMONINTERFACE_HPP
diff --git a/src/common/interface/Connection.hpp b/src/common/interface/Connection.hpp
index 4cba7196..8daea551 100644
--- a/src/common/interface/Connection.hpp
+++ b/src/common/interface/Connection.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef CONNECTION_H
-#define CONNECTION_H
+#ifndef INGEN_INTERFACE_CONNECTION_HPP
+#define INGEN_INTERFACE_CONNECTION_HPP
#include "raul/Path.hpp"
@@ -40,4 +40,4 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // CONNECTION_H
+#endif // INGEN_INTERFACE_CONNECTION_HPP
diff --git a/src/common/interface/EngineInterface.hpp b/src/common/interface/EngineInterface.hpp
index 6d99a14d..644eaea5 100644
--- a/src/common/interface/EngineInterface.hpp
+++ b/src/common/interface/EngineInterface.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef ENGINEINTERFACE_H
-#define ENGINEINTERFACE_H
+#ifndef INGEN_INTERFACE_ENGINEINTERFACE_HPP
+#define INGEN_INTERFACE_ENGINEINTERFACE_HPP
#include <inttypes.h>
#include "interface/CommonInterface.hpp"
@@ -78,5 +78,5 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // ENGINEINTERFACE_H
+#endif // INGEN_INTERFACE_ENGINEINTERFACE_HPP
diff --git a/src/common/interface/EventType.hpp b/src/common/interface/EventType.hpp
index 36f0d3dd..3f3def1d 100644
--- a/src/common/interface/EventType.hpp
+++ b/src/common/interface/EventType.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef EVENTTYPE_H
-#define EVENTTYPE_H
+#ifndef INGEN_INTERFACE_EVENTTYPE_HPP
+#define INGEN_INTERFACE_EVENTTYPE_HPP
namespace Ingen {
namespace Shared {
@@ -74,4 +74,4 @@ private:
} // namespace Shared
} // namespace Ingen
-#endif // EVENTTYPE_H
+#endif // INGEN_INTERFACE_EVENTTYPE_HPP
diff --git a/src/common/interface/GraphObject.hpp b/src/common/interface/GraphObject.hpp
index 072fbff9..68242a46 100644
--- a/src/common/interface/GraphObject.hpp
+++ b/src/common/interface/GraphObject.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef GRAPHOBJECT_H
-#define GRAPHOBJECT_H
+#ifndef INGEN_INTERFACE_GRAPHOBJECT_HPP
+#define INGEN_INTERFACE_GRAPHOBJECT_HPP
#include "raul/Deletable.hpp"
#include "raul/Path.hpp"
@@ -55,4 +55,4 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // GRAPHOBJECT_H
+#endif // INGEN_INTERFACE_GRAPHOBJECT_HPP
diff --git a/src/common/interface/MessageType.hpp b/src/common/interface/MessageType.hpp
index ea6bc726..3f18aaac 100644
--- a/src/common/interface/MessageType.hpp
+++ b/src/common/interface/MessageType.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef MESSAGE_TYPE_HPP
-#define MESSAGE_TYPE_HPP
+#ifndef INGEN_INTERFACE_MESSAGETYPE_HPP
+#define INGEN_INTERFACE_MESSAGETYPE_HPP
#include <cassert>
#include <iostream>
@@ -117,4 +117,4 @@ static inline std::ostream& operator<<(std::ostream& os, const Ingen::Shared::Me
return os;
}
-#endif // MESSAGE_TYPE_HPP
+#endif // INGEN_INTERFACE_MESSAGETYPE_HPP
diff --git a/src/common/interface/Node.hpp b/src/common/interface/Node.hpp
index a2586e71..4a700a12 100644
--- a/src/common/interface/Node.hpp
+++ b/src/common/interface/Node.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef NODE_H
-#define NODE_H
+#ifndef INGEN_INTERFACE_NODE_HPP
+#define INGEN_INTERFACE_NODE_HPP
#include <stdint.h>
#include "GraphObject.hpp"
@@ -49,4 +49,4 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // NODE_H
+#endif // INGEN_INTERFACE_NODE_HPP
diff --git a/src/common/interface/Patch.hpp b/src/common/interface/Patch.hpp
index f00d790b..ea6a0507 100644
--- a/src/common/interface/Patch.hpp
+++ b/src/common/interface/Patch.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef PATCH_H
-#define PATCH_H
+#ifndef INGEN_INTERFACE_PATCH_HPP
+#define INGEN_INTERFACE_PATCH_HPP
#include "raul/SharedPtr.hpp"
#include "raul/List.hpp"
@@ -47,4 +47,4 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // PATCH_H
+#endif // INGEN_INTERFACE_PATCH_HPP
diff --git a/src/common/interface/Plugin.hpp b/src/common/interface/Plugin.hpp
index b5ba3adf..d3d74970 100644
--- a/src/common/interface/Plugin.hpp
+++ b/src/common/interface/Plugin.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef PLUGIN_H
-#define PLUGIN_H
+#ifndef INGEN_INTERFACE_PLUGIN_HPP
+#define INGEN_INTERFACE_PLUGIN_HPP
#include <string>
#include "interface/Resource.hpp"
@@ -59,4 +59,4 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // PLUGIN_H
+#endif // INGEN_INTERFACE_PLUGIN_HPP
diff --git a/src/common/interface/PortType.hpp b/src/common/interface/PortType.hpp
index 557d7e75..ca739cb8 100644
--- a/src/common/interface/PortType.hpp
+++ b/src/common/interface/PortType.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef PORTTYPE_H
-#define PORTTYPE_H
+#ifndef INGEN_INTERFACE_PORTTYPE_HPP
+#define INGEN_INTERFACE_PORTTYPE_HPP
#include <raul/URI.hpp>
@@ -95,4 +95,4 @@ private:
} // namespace Shared
} // namespace Ingen
-#endif // PORTTYPE_H
+#endif // INGEN_INTERFACE_PORTTYPE_HPP
diff --git a/src/common/interface/Resource.hpp b/src/common/interface/Resource.hpp
index bc7ea7dd..4939d7b1 100644
--- a/src/common/interface/Resource.hpp
+++ b/src/common/interface/Resource.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef RESOURCE_HPP
-#define RESOURCE_HPP
+#ifndef INGEN_INTERFACE_RESOURCE_HPP
+#define INGEN_INTERFACE_RESOURCE_HPP
#include <string>
#include <map>
@@ -52,5 +52,5 @@ public:
} // namespace Shared
} // namespace Ingen
-#endif // RESOURCE_HPP
+#endif // INGEN_INTERFACE_RESOURCE_HPP