diff options
Diffstat (limited to 'src/server/ingen_lv2.cpp')
-rw-r--r-- | src/server/ingen_lv2.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/ingen_lv2.cpp b/src/server/ingen_lv2.cpp index e6fab92a..e3bb240a 100644 --- a/src/server/ingen_lv2.cpp +++ b/src/server/ingen_lv2.cpp @@ -60,6 +60,8 @@ #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" #define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#" +namespace Ingen { + /** Record of a graph in this bundle. */ struct LV2Graph { LV2Graph(const std::string& u, const std::string& f); @@ -74,12 +76,11 @@ class Lib { public: explicit Lib(const char* bundle_path); - typedef std::vector< Ingen::SPtr<const LV2Graph> > Graphs; + typedef std::vector< SPtr<const LV2Graph> > Graphs; Graphs graphs; }; -namespace Ingen { namespace Server { class LV2Driver; |