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/engine/events | |
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/engine/events')
25 files changed, 75 insertions, 75 deletions
diff --git a/src/engine/events/AllNotesOff.hpp b/src/engine/events/AllNotesOff.hpp index 77fcd651..f4c07f7d 100644 --- a/src/engine/events/AllNotesOff.hpp +++ b/src/engine/events/AllNotesOff.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef ALLNOTESOFFEVENT_H -#define ALLNOTESOFFEVENT_H +#ifndef INGEN_EVENTS_ALLNOTESOFF_HPP +#define INGEN_EVENTS_ALLNOTESOFF_HPP #include "Event.hpp" @@ -49,4 +49,4 @@ private: } // namespace Ingen } // namespace Events -#endif // ALLNOTESOFFEVENT_H +#endif // INGEN_EVENTS_ALLNOTESOFF_HPP diff --git a/src/engine/events/Connect.hpp b/src/engine/events/Connect.hpp index 53b58e52..f8e2cdfa 100644 --- a/src/engine/events/Connect.hpp +++ b/src/engine/events/Connect.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef CONNECTIONEVENT_H -#define CONNECTIONEVENT_H +#ifndef INGEN_EVENTS_CONNECT_HPP +#define INGEN_EVENTS_CONNECT_HPP #include "raul/Path.hpp" #include "QueuedEvent.hpp" @@ -90,4 +90,4 @@ private: } // namespace Ingen } // namespace Events -#endif // CONNECTIONEVENT_H +#endif // INGEN_EVENTS_CONNECT_HPP diff --git a/src/engine/events/CreateNode.hpp b/src/engine/events/CreateNode.hpp index 8f2379b0..389c0ff5 100644 --- a/src/engine/events/CreateNode.hpp +++ b/src/engine/events/CreateNode.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef CREATENODEEVENT_H -#define CREATENODEEVENT_H +#ifndef INGEN_EVENTS_CREATENODE_HPP +#define INGEN_EVENTS_CREATENODE_HPP #include <string> #include "QueuedEvent.hpp" @@ -72,4 +72,4 @@ private: } // namespace Ingen } // namespace Events -#endif // CREATENODEEVENT_H +#endif // INGEN_EVENTS_CREATENODE_HPP diff --git a/src/engine/events/CreatePatch.hpp b/src/engine/events/CreatePatch.hpp index 15dee643..a9f1281e 100644 --- a/src/engine/events/CreatePatch.hpp +++ b/src/engine/events/CreatePatch.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef CREATEPATCHEVENT_H -#define CREATEPATCHEVENT_H +#ifndef INGEN_EVENTS_CREATEPATCH_HPP +#define INGEN_EVENTS_CREATEPATCH_HPP #include "QueuedEvent.hpp" #include "interface/Resource.hpp" @@ -66,4 +66,4 @@ private: } // namespace Events -#endif // CREATEPATCHEVENT_H +#endif // INGEN_EVENTS_CREATEPATCH_HPP diff --git a/src/engine/events/CreatePort.hpp b/src/engine/events/CreatePort.hpp index adda30bb..ad8ab5bf 100644 --- a/src/engine/events/CreatePort.hpp +++ b/src/engine/events/CreatePort.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef CREATEPORTEVENT_H -#define CREATEPORTEVENT_H +#ifndef INGEN_EVENTS_CREATEPORT_HPP +#define INGEN_EVENTS_CREATEPORT_HPP #include "QueuedEvent.hpp" #include "raul/Path.hpp" @@ -79,4 +79,4 @@ private: } // namespace Ingen } // namespace Events -#endif // CREATEPORTEVENT_H +#endif // INGEN_EVENTS_CREATEPORT_HPP diff --git a/src/engine/events/Deactivate.hpp b/src/engine/events/Deactivate.hpp index 05d87520..609430d9 100644 --- a/src/engine/events/Deactivate.hpp +++ b/src/engine/events/Deactivate.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef DEACTIVATEEVENT_H -#define DEACTIVATEEVENT_H +#ifndef INGEN_EVENTS_DEACTIVATE_HPP +#define INGEN_EVENTS_DEACTIVATE_HPP #include "QueuedEvent.hpp" #include "Engine.hpp" @@ -46,4 +46,4 @@ public: } // namespace Ingen } // namespace Events -#endif // DEACTIVATEEVENT_H +#endif // INGEN_EVENTS_DEACTIVATE_HPP diff --git a/src/engine/events/Delete.hpp b/src/engine/events/Delete.hpp index e4cb6732..8ad8ac12 100644 --- a/src/engine/events/Delete.hpp +++ b/src/engine/events/Delete.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef DESTROYEVENT_H -#define DESTROYEVENT_H +#ifndef INGEN_EVENTS_DELETE_HPP +#define INGEN_EVENTS_DELETE_HPP #include "QueuedEvent.hpp" #include "EngineStore.hpp" @@ -92,4 +92,4 @@ private: } // namespace Ingen } // namespace Events -#endif // DESTROYEVENT_H +#endif // INGEN_EVENTS_DELETE_HPP diff --git a/src/engine/events/Disconnect.hpp b/src/engine/events/Disconnect.hpp index 652fd4b5..e118143c 100644 --- a/src/engine/events/Disconnect.hpp +++ b/src/engine/events/Disconnect.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef DISCONNECTIONEVENT_H -#define DISCONNECTIONEVENT_H +#ifndef INGEN_EVENTS_DISCONNECT_HPP +#define INGEN_EVENTS_DISCONNECT_HPP #include "raul/Path.hpp" #include "QueuedEvent.hpp" @@ -99,4 +99,4 @@ private: } // namespace Ingen } // namespace Events -#endif // DISCONNECTIONEVENT_H +#endif // INGEN_EVENTS_DISCONNECT_HPP diff --git a/src/engine/events/DisconnectAll.hpp b/src/engine/events/DisconnectAll.hpp index 8cb3f9a2..d350e889 100644 --- a/src/engine/events/DisconnectAll.hpp +++ b/src/engine/events/DisconnectAll.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef DISCONNECTNODEEVENT_H -#define DISCONNECTNODEEVENT_H +#ifndef INGEN_EVENTS_DISCONNECTALL_HPP +#define INGEN_EVENTS_DISCONNECTALL_HPP #include "raul/List.hpp" #include "raul/Path.hpp" @@ -87,4 +87,4 @@ private: } // namespace Events -#endif // DISCONNECTNODEEVENT_H +#endif // INGEN_EVENTS_DISCONNECTALL_HPP diff --git a/src/engine/events/Get.hpp b/src/engine/events/Get.hpp index 81d86b25..5054ddb5 100644 --- a/src/engine/events/Get.hpp +++ b/src/engine/events/Get.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef REQUESTOBJECTEVENT_H -#define REQUESTOBJECTEVENT_H +#ifndef INGEN_EVENTS_GET_HPP +#define INGEN_EVENTS_GET_HPP #include "QueuedEvent.hpp" #include "types.hpp" @@ -56,4 +56,4 @@ private: } // namespace Ingen } // namespace Events -#endif // REQUESTOBJECTEVENT_H +#endif // INGEN_EVENTS_GET_HPP diff --git a/src/engine/events/Learn.hpp b/src/engine/events/Learn.hpp index 8eb61c5f..5f548797 100644 --- a/src/engine/events/Learn.hpp +++ b/src/engine/events/Learn.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef MIDILEARNEVENT_H -#define MIDILEARNEVENT_H +#ifndef INGEN_EVENTS_LEARN_HPP +#define INGEN_EVENTS_LEARN_HPP #include "QueuedEvent.hpp" #include "internals/Controller.hpp" @@ -58,4 +58,4 @@ private: } // namespace Ingen } // namespace Events -#endif // MIDILEARNEVENT_H +#endif // INGEN_EVENTS_LEARN_HPP diff --git a/src/engine/events/LoadPlugins.hpp b/src/engine/events/LoadPlugins.hpp index 3549fdfd..dcc5cd52 100644 --- a/src/engine/events/LoadPlugins.hpp +++ b/src/engine/events/LoadPlugins.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef LOADPLUGINSEVENT_H -#define LOADPLUGINSEVENT_H +#ifndef INGEN_EVENTS_LOADPLUGINS_HPP +#define INGEN_EVENTS_LOADPLUGINS_HPP #include "QueuedEvent.hpp" @@ -44,4 +44,4 @@ public: } // namespace Ingen } // namespace Events -#endif // LOADPLUGINSEVENT_H +#endif // INGEN_EVENTS_LOADPLUGINS_HPP diff --git a/src/engine/events/Move.hpp b/src/engine/events/Move.hpp index 7effaae0..5a982397 100644 --- a/src/engine/events/Move.hpp +++ b/src/engine/events/Move.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef RENAMEEVENT_H -#define RENAMEEVENT_H +#ifndef INGEN_EVENTS_MOVE_HPP +#define INGEN_EVENTS_MOVE_HPP #include "raul/Path.hpp" #include "QueuedEvent.hpp" @@ -77,4 +77,4 @@ private: } // namespace Ingen } // namespace Events -#endif // RENAMEEVENT_H +#endif // INGEN_EVENTS_MOVE_HPP diff --git a/src/engine/events/Note.hpp b/src/engine/events/Note.hpp index 9d895652..418e9130 100644 --- a/src/engine/events/Note.hpp +++ b/src/engine/events/Note.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef NOTEEVENT_H -#define NOTEEVENT_H +#ifndef INGEN_EVENTS_NOTE_HPP +#define INGEN_EVENTS_NOTE_HPP #include "Event.hpp" #include "types.hpp" @@ -66,4 +66,4 @@ private: } // namespace Ingen } // namespace Events -#endif // NOTEEVENT_H +#endif // INGEN_EVENTS_NOTE_HPP diff --git a/src/engine/events/Ping.hpp b/src/engine/events/Ping.hpp index 8a8b554d..f7359efc 100644 --- a/src/engine/events/Ping.hpp +++ b/src/engine/events/Ping.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PINGQUEUEDEVENT_H -#define PINGQUEUEDEVENT_H +#ifndef INGEN_EVENTS_PING_HPP +#define INGEN_EVENTS_PING_HPP #include "QueuedEvent.hpp" #include "types.hpp" @@ -48,4 +48,4 @@ public: } // namespace Ingen } // namespace Events -#endif // PINGQUEUEDEVENT_H +#endif // INGEN_EVENTS_PING_HPP diff --git a/src/engine/events/RegisterClient.hpp b/src/engine/events/RegisterClient.hpp index 92c62cc7..baecdc4d 100644 --- a/src/engine/events/RegisterClient.hpp +++ b/src/engine/events/RegisterClient.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef REGISTERCLIENTEVENT_H -#define REGISTERCLIENTEVENT_H +#ifndef INGEN_EVENTS_REGISTERCLIENT_HPP +#define INGEN_EVENTS_REGISTERCLIENT_HPP #include "raul/URI.hpp" #include "interface/ClientInterface.hpp" @@ -51,4 +51,4 @@ private: } // namespace Ingen } // namespace Events -#endif // REGISTERCLIENTEVENT_H +#endif // INGEN_EVENTS_REGISTERCLIENT_HPP diff --git a/src/engine/events/RequestAllObjects.hpp b/src/engine/events/RequestAllObjects.hpp index 1499a83c..3b44c5c0 100644 --- a/src/engine/events/RequestAllObjects.hpp +++ b/src/engine/events/RequestAllObjects.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef REQUESTALLOBJECTSEVENT_H -#define REQUESTALLOBJECTSEVENT_H +#ifndef INGEN_EVENTS_REQUESTALLOBJECTS_HPP +#define INGEN_EVENTS_REQUESTALLOBJECTS_HPP #include "QueuedEvent.hpp" @@ -41,4 +41,4 @@ public: } // namespace Ingen } // namespace Events -#endif // REQUESTALLOBJECTSEVENT_H +#endif // INGEN_EVENTS_REQUESTALLOBJECTS_HPP diff --git a/src/engine/events/RequestMetadata.hpp b/src/engine/events/RequestMetadata.hpp index 0777c79a..68da6adc 100644 --- a/src/engine/events/RequestMetadata.hpp +++ b/src/engine/events/RequestMetadata.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef REQUESTMETADATAEVENT_H -#define REQUESTMETADATAEVENT_H +#ifndef INGEN_EVENTS_REQUESTMETADATA_HPP +#define INGEN_EVENTS_REQUESTMETADATA_HPP #include "QueuedEvent.hpp" #include "raul/Atom.hpp" @@ -73,4 +73,4 @@ private: } // namespace Ingen } // namespace Events -#endif // REQUESTMETADATAEVENT_H +#endif // INGEN_EVENTS_REQUESTMETADATA_HPP diff --git a/src/engine/events/RequestPlugins.hpp b/src/engine/events/RequestPlugins.hpp index 16f878db..e4372bc6 100644 --- a/src/engine/events/RequestPlugins.hpp +++ b/src/engine/events/RequestPlugins.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef REQUESTPLUGINSEVENT_H -#define REQUESTPLUGINSEVENT_H +#ifndef INGEN_EVENTS_REQUESTPLUGINS_HPP +#define INGEN_EVENTS_REQUESTPLUGINS_HPP #include "QueuedEvent.hpp" #include "NodeFactory.hpp" @@ -48,4 +48,4 @@ private: } // namespace Ingen } // namespace Events -#endif // REQUESTPLUGINSEVENT_H +#endif // INGEN_EVENTS_REQUESTPLUGINS_HPP diff --git a/src/engine/events/SendBinding.hpp b/src/engine/events/SendBinding.hpp index 303e29fa..7cce3767 100644 --- a/src/engine/events/SendBinding.hpp +++ b/src/engine/events/SendBinding.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SENDBINDINGEVENT_H -#define SENDBINDINGEVENT_H +#ifndef INGEN_EVENTS_SENDBINDING_HPP +#define INGEN_EVENTS_SENDBINDING_HPP #include "raul/Atom.hpp" #include "interface/MessageType.hpp" @@ -65,4 +65,4 @@ private: } // namespace Ingen } // namespace Events -#endif // SENDBINDINGEVENT_H +#endif // INGEN_EVENTS_SENDBINDING_HPP diff --git a/src/engine/events/SendPortActivity.hpp b/src/engine/events/SendPortActivity.hpp index c35266c5..2e1c40f2 100644 --- a/src/engine/events/SendPortActivity.hpp +++ b/src/engine/events/SendPortActivity.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SENDPORTACTIVITYEVENT_H -#define SENDPORTACTIVITYEVENT_H +#ifndef INGEN_EVENTS_SENDPORTACTIVITY_HPP +#define INGEN_EVENTS_SENDPORTACTIVITY_HPP #include "Event.hpp" #include "types.hpp" @@ -65,4 +65,4 @@ private: } // namespace Ingen } // namespace Events -#endif // SENDPORTACTIVITYEVENT_H +#endif // INGEN_EVENTS_SENDPORTACTIVITY_HPP diff --git a/src/engine/events/SendPortValue.hpp b/src/engine/events/SendPortValue.hpp index b942398c..a106f459 100644 --- a/src/engine/events/SendPortValue.hpp +++ b/src/engine/events/SendPortValue.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SENDPORTVALUEEVENT_H -#define SENDPORTVALUEEVENT_H +#ifndef INGEN_EVENTS_SENDPORTVALUE_HPP +#define INGEN_EVENTS_SENDPORTVALUE_HPP #include "raul/Atom.hpp" #include "engine/Event.hpp" @@ -78,4 +78,4 @@ private: } // namespace Ingen } // namespace Events -#endif // SENDPORTVALUEEVENT_H +#endif // INGEN_EVENTS_SENDPORTVALUE_HPP diff --git a/src/engine/events/SetMetadata.hpp b/src/engine/events/SetMetadata.hpp index 1417e02c..cf49efae 100644 --- a/src/engine/events/SetMetadata.hpp +++ b/src/engine/events/SetMetadata.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SETMETADATAEVENT_H -#define SETMETADATAEVENT_H +#ifndef INGEN_EVENTS_SETMETADATA_HPP +#define INGEN_EVENTS_SETMETADATA_HPP #include <vector> #include "raul/URI.hpp" @@ -117,4 +117,4 @@ private: } // namespace Ingen } // namespace Events -#endif // SETMETADATAEVENT_H +#endif // INGEN_EVENTS_SETMETADATA_HPP diff --git a/src/engine/events/SetPortValue.hpp b/src/engine/events/SetPortValue.hpp index aab59811..821672fd 100644 --- a/src/engine/events/SetPortValue.hpp +++ b/src/engine/events/SetPortValue.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SETPORTVALUEEVENT_H -#define SETPORTVALUEEVENT_H +#ifndef INGEN_EVENTS_SETPORTVALUE_HPP +#define INGEN_EVENTS_SETPORTVALUE_HPP #include "raul/Atom.hpp" #include "QueuedEvent.hpp" @@ -92,4 +92,4 @@ private: } // namespace Ingen } // namespace Events -#endif // SETPORTVALUEEVENT_H +#endif // INGEN_EVENTS_SETPORTVALUE_HPP diff --git a/src/engine/events/UnregisterClient.hpp b/src/engine/events/UnregisterClient.hpp index 9b6f9ab1..e32f8a94 100644 --- a/src/engine/events/UnregisterClient.hpp +++ b/src/engine/events/UnregisterClient.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef UNREGISTERCLIENTEVENT_H -#define UNREGISTERCLIENTEVENT_H +#ifndef INGEN_EVENTS_UNREGISTERCLIENT_HPP +#define INGEN_EVENTS_UNREGISTERCLIENT_HPP #include "QueuedEvent.hpp" #include "raul/URI.hpp" @@ -47,4 +47,4 @@ private: } // namespace Ingen } // namespace Events -#endif // UNREGISTERCLIENTEVENT_H +#endif // INGEN_EVENTS_UNREGISTERCLIENT_HPP |