diff options
author | David Robillard <d@drobilla.net> | 2011-04-13 04:59:03 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-13 04:59:03 +0000 |
commit | 8b2f670248c92776e375bd30c0815a4ff259bb0e (patch) | |
tree | 0f130bf4f118209788d2792b06de9f8b0aefebc6 /src/shared | |
parent | 793bef06e2a98561e266a32ee767410ea44d4c67 (diff) | |
download | ingen-8b2f670248c92776e375bd30c0815a4ff259bb0e.tar.gz ingen-8b2f670248c92776e375bd30c0815a4ff259bb0e.tar.bz2 ingen-8b2f670248c92776e375bd30c0815a4ff259bb0e.zip |
Consistent local or installed includes for interface headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3143 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/Builder.cpp | 12 | ||||
-rw-r--r-- | src/shared/ClashAvoider.hpp | 2 | ||||
-rw-r--r-- | src/shared/ResourceImpl.hpp | 4 | ||||
-rw-r--r-- | src/shared/Store.cpp | 4 | ||||
-rw-r--r-- | src/shared/Store.hpp | 2 | ||||
-rw-r--r-- | src/shared/wscript | 2 |
6 files changed, 13 insertions, 13 deletions
diff --git a/src/shared/Builder.cpp b/src/shared/Builder.cpp index 98ce3879..369be71b 100644 --- a/src/shared/Builder.cpp +++ b/src/shared/Builder.cpp @@ -16,12 +16,12 @@ */ #include "raul/Atom.hpp" -#include "common/interface/CommonInterface.hpp" -#include "common/interface/Patch.hpp" -#include "common/interface/Node.hpp" -#include "common/interface/Port.hpp" -#include "common/interface/Connection.hpp" -#include "common/interface/Plugin.hpp" +#include "ingen/CommonInterface.hpp" +#include "ingen/Patch.hpp" +#include "ingen/Node.hpp" +#include "ingen/Port.hpp" +#include "ingen/Connection.hpp" +#include "ingen/Plugin.hpp" #include "shared/LV2URIMap.hpp" #include "Builder.hpp" diff --git a/src/shared/ClashAvoider.hpp b/src/shared/ClashAvoider.hpp index 6c43bd72..dd5987ca 100644 --- a/src/shared/ClashAvoider.hpp +++ b/src/shared/ClashAvoider.hpp @@ -21,7 +21,7 @@ #include <inttypes.h> #include <string> #include <map> -#include "interface/CommonInterface.hpp" +#include "ingen/CommonInterface.hpp" namespace Raul { class Atom; class Path; } diff --git a/src/shared/ResourceImpl.hpp b/src/shared/ResourceImpl.hpp index 6ce6cd26..75b58d21 100644 --- a/src/shared/ResourceImpl.hpp +++ b/src/shared/ResourceImpl.hpp @@ -21,8 +21,8 @@ #include <map> #include "raul/URI.hpp" #include "raul/SharedPtr.hpp" -#include "interface/Resource.hpp" -#include "interface/PortType.hpp" +#include "ingen/Resource.hpp" +#include "ingen/PortType.hpp" namespace Ingen { namespace Shared { diff --git a/src/shared/Store.cpp b/src/shared/Store.cpp index 4edaa001..fc366376 100644 --- a/src/shared/Store.cpp +++ b/src/shared/Store.cpp @@ -19,8 +19,8 @@ #include "raul/log.hpp" #include "raul/PathTable.hpp" #include "raul/TableImpl.hpp" -#include "common/interface/Node.hpp" -#include "common/interface/Port.hpp" +#include "ingen/Node.hpp" +#include "ingen/Port.hpp" #include "Store.hpp" using namespace std; diff --git a/src/shared/Store.hpp b/src/shared/Store.hpp index 3d279211..5a019a5c 100644 --- a/src/shared/Store.hpp +++ b/src/shared/Store.hpp @@ -21,7 +21,7 @@ #include <string> #include <glibmm/thread.h> #include "raul/PathTable.hpp" -#include "interface/GraphObject.hpp" +#include "ingen/GraphObject.hpp" namespace Ingen { namespace Shared { diff --git a/src/shared/wscript b/src/shared/wscript index 928a77f8..811ed45e 100644 --- a/src/shared/wscript +++ b/src/shared/wscript @@ -23,7 +23,7 @@ def build(bld): autowaf.use_lib(bld, obj, 'SOUP') obj.source += ' HTTPSender.cpp ' obj.export_includes = ['.'] - obj.includes = ['.', '..', '../..', '../common'] + obj.includes = ['.', '..', '../..', '../../include'] obj.name = 'libingen_shared' obj.target = 'ingen_shared' obj.vnum = '0.0.0' |