diff options
author | David Robillard <d@drobilla.net> | 2012-11-21 03:49:32 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-11-21 03:49:32 +0000 |
commit | 0583e0b72b6bf7064c2e8af498b18f0bc168485f (patch) | |
tree | 817903922138a6a697c4b22b5238318da15dbc70 /src/ingen | |
parent | d358cae57b7233bf6b781686979fc4dea4d090b3 (diff) | |
download | ingen-0583e0b72b6bf7064c2e8af498b18f0bc168485f.tar.gz ingen-0583e0b72b6bf7064c2e8af498b18f0bc168485f.tar.bz2 ingen-0583e0b72b6bf7064c2e8af498b18f0bc168485f.zip |
Move Configuration from Raul to Ingen.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4836 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/main.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/ingen/main.cpp b/src/ingen/main.cpp index 670cd514..99fa079a 100644 --- a/src/ingen/main.cpp +++ b/src/ingen/main.cpp @@ -23,20 +23,19 @@ #include <glibmm/thread.h> #include <glibmm/timer.h> -#include "raul/Configuration.hpp" #include "raul/Path.hpp" #include "raul/SharedPtr.hpp" #include "raul/fmt.hpp" #include "ingen_config.h" +#include "ingen/Configuration.hpp" #include "ingen/EngineBase.hpp" #include "ingen/Interface.hpp" -#include "ingen/serialisation/Parser.hpp" -#include "ingen/Configuration.hpp" #include "ingen/World.hpp" -#include "ingen/runtime_paths.hpp" #include "ingen/client/ThreadedSigClientInterface.hpp" +#include "ingen/runtime_paths.hpp" +#include "ingen/serialisation/Parser.hpp" #ifdef WITH_BINDINGS #include "bindings/ingen_bindings.hpp" #endif @@ -156,7 +155,7 @@ main(int argc, char** argv) boost::optional<Raul::Path> parent; boost::optional<Raul::Symbol> symbol; - const Raul::Configuration::Value& path_option = conf.option("path"); + const Configuration::Value& path_option = conf.option("path"); if (path_option.is_valid()) { if (Raul::Path::is_valid(path_option.get_string())) { const Raul::Path p(path_option.get_string()); |