X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkFactory.h;h=c5433cc7af73a9f544db4c8c20898a761e42ca6c;hb=1549130608fe5eaec31c965f16babae0795a4afd;hp=0a7f39e6f2f0a1adca70e8a842cc671b20862bfd;hpb=01f46ce7ba8fe9067dff0688706986475aaec73e;p=bbtk.git diff --git a/kernel/src/bbtkFactory.h b/kernel/src/bbtkFactory.h index 0a7f39e..c5433cc 100644 --- a/kernel/src/bbtkFactory.h +++ b/kernel/src/bbtkFactory.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkFactory.h,v $ Language: C++ - Date: $Date: 2008/02/12 12:55:16 $ - Version: $Revision: 1.5 $ + Date: $Date: 2008/02/14 13:44:25 $ + Version: $Revision: 1.7 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See doc/license.txt or @@ -44,8 +44,7 @@ namespace bbtk ~Factory(); void LoadPackage( const std::string& name, - bool use_configuration_file = true, - bool verbose = false ); + bool use_configuration_file = true ); void UnLoadPackage( const std::string& name ); void PrintPackages(bool details = true, bool adaptors = false) const; void HelpPackage(const std::string& name, bool adaptors = false) const; @@ -87,8 +86,7 @@ namespace bbtk bool DoLoadPackage(std::string libname, std::string pkgname, - std::string path, - bool v); + std::string path); /// The structure storing info on a package class PackageInfoType @@ -142,9 +140,9 @@ namespace bbtk } inline void LoadPackage( const std::string& name, - bool use_configuration_file = true, bool verbose = false ) + bool use_configuration_file = true) { - GetGlobalFactory()->LoadPackage(name,use_configuration_file, verbose); + GetGlobalFactory()->LoadPackage(name,use_configuration_file); } inline void UnLoadPackage( const std::string& name ) @@ -170,7 +168,7 @@ namespace bbtk inline void HelpBlackBox(const std::string& name, std::string& package, bool full=true - ) + ) { GetGlobalFactory()->HelpBlackBox(name, package, full); }