X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=kernel%2Fsrc%2FbbtkPackage.h;h=fb7b32c375c6b7fad0ee18c82c3015b7a892b99b;hb=7eba604321498f7ed6333b7cbe9bf2aceb4ec30e;hp=069d13598275e865d8eea0380c798a7f03508914;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkPackage.h b/kernel/src/bbtkPackage.h index 069d135..fb7b32c 100644 --- a/kernel/src/bbtkPackage.h +++ b/kernel/src/bbtkPackage.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkPackage.h,v $ Language: C++ - Date: $Date: 2008/01/22 15:02:00 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/02/05 12:16:55 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See doc/license.txt or @@ -43,19 +43,26 @@ namespace bbtk ~Package(); /// Returns the name of the package const std::string& GetName() const { return mName; } + /// Returns the author of the package const std::string& GetAuthor() const { return mAuthor; } + + /// Returns the category of the package + const std::string& GetCategory() const { return mCategory; } + /// Returns the description of the package const std::string& GetDescription() const { return mDescription; } + /// Returns the version of the package const std::string& GetVersion() const { return mVersion; } + /// Returns the version of bbtk used to build the package const std::string& GetBBTKVersion() const { return mBBTKVersion; } - + bool ContainsBlackBox(const std::string& boxname) const; - - BlackBox* NewBlackBox(const std::string& type, + + BlackBox* NewBlackBox(const std::string& type, const std::string& name) const; BlackBox* NewAdaptor(TypeInfo typein, @@ -93,12 +100,18 @@ namespace bbtk /// Changes the name of a black box type void ChangeBlackBoxName( const std::string& oldname, const std::string& newname ); + /// The type of map of descriptors + typedef std::map< std::string, BlackBoxDescriptor*> BlackBoxMapType; + const BlackBoxMapType& GetBlackBoxMap() const { return mBlackBoxMap; } + BlackBoxMapType& GetBlackBoxMap() { return mBlackBoxMap; } private: /// The name of the package std::string mName; /// The author of the package std::string mAuthor; + /// The categories of the package + std::string mCategory; /// The description of the package std::string mDescription; /// The version of the package @@ -112,8 +125,6 @@ namespace bbtk std::string mDocRelativeURL; - /// The type of map of descriptors - typedef std::map< std::string, BlackBoxDescriptor*> BlackBoxMapType; /// The map of black boxes descriptors BlackBoxMapType mBlackBoxMap;