Skip to content
Snippets Groups Projects
Commit 9812fe31 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

ENH: by default, allow usage of ITK factories to load applications (backward compat)

parent c592037d
No related branches found
No related tags found
No related merge requests found
......@@ -59,10 +59,10 @@ public:
static void AddApplicationPath(std::string path);
/** Return the list of available applications */
static std::vector<std::string> GetAvailableApplications(bool useFactory=false);
static std::vector<std::string> GetAvailableApplications(bool useFactory=true);
/** Create the specified Application */
static Application::Pointer CreateApplication(const std::string& applicationName, bool useFactory=false);
static Application::Pointer CreateApplication(const std::string& applicationName, bool useFactory=true);
/** Create the specified Application (faster)
* method using dynamic library name to load the right module */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment