diff options
author | drd <drd@ableton.com> | 2017-02-16 17:28:54 +0100 |
---|---|---|
committer | drd <drd@ableton.com> | 2017-02-16 17:45:25 +0100 |
commit | e2f6b686003f86af8a64e7c6f7e8cf8c2da7ba69 (patch) | |
tree | a57fe24b425ad37b3ce5cf32aefec99cee7ede12 /ingen | |
parent | e29b2efa89ccfab0c631dae771b8c0e5b9616839 (diff) | |
download | ingen-e2f6b686003f86af8a64e7c6f7e8cf8c2da7ba69.tar.gz ingen-e2f6b686003f86af8a64e7c6f7e8cf8c2da7ba69.tar.bz2 ingen-e2f6b686003f86af8a64e7c6f7e8cf8c2da7ba69.zip |
Preliminary alternative parallel traversal/benchmarking work
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/World.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ingen/World.hpp b/ingen/World.hpp index fc77593a..b0e09b34 100644 --- a/ingen/World.hpp +++ b/ingen/World.hpp @@ -64,20 +64,20 @@ class URIs; class INGEN_API World : public Raul::Noncopyable { public: /** Construct a new Ingen world. - * @param argc Argument count (as in C main()) - * @param argv Argument vector (as in C main()) * @param map LV2 URID map implementation, or NULL to use internal. * @param unmap LV2 URID unmap implementation, or NULL to use internal. * @param log LV2 log implementation, or NULL to use internal. */ - World(int& argc, - char**& argv, - LV2_URID_Map* map, - LV2_URID_Unmap* unmap, - LV2_Log_Log* log); + World(LV2_URID_Map* map, LV2_URID_Unmap* unmap, LV2_Log_Log* log); virtual ~World(); + /** Load configuration from files and command line. + * @param argc Argument count (as in C main()) + * @param argv Argument vector (as in C main()) + */ + virtual void load_configuration(int& argc, char**& argv); + /** Load an Ingen module by name (e.g. "server", "gui", etc.) * @return True on success. */ |