X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=segmentation%2FclitkAnatomicalFeatureDatabase.cxx;h=c86b2df07f7e4d056463861196589b9c7364ece0;hb=a595d0ae02a42e1fc87d8cf044243da08e39414c;hp=f9fef2a636e31ed33d94fc52e182c624933e8e7c;hpb=0b62ce46bc2faf52102522ff93ba161f17fa25d0;p=clitk.git diff --git a/segmentation/clitkAnatomicalFeatureDatabase.cxx b/segmentation/clitkAnatomicalFeatureDatabase.cxx index f9fef2a..c86b2df 100644 --- a/segmentation/clitkAnatomicalFeatureDatabase.cxx +++ b/segmentation/clitkAnatomicalFeatureDatabase.cxx @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html - ======================================================================-====*/ + ===========================================================================**/ // clitk #include "clitkAnatomicalFeatureDatabase.h" @@ -161,6 +161,7 @@ bool clitk::AnatomicalFeatureDatabase::TagExist(std::string tag) } //-------------------------------------------------------------------- + //-------------------------------------------------------------------- void clitk::AnatomicalFeatureDatabase::SetDouble(std::string tag, double value) { @@ -168,6 +169,7 @@ void clitk::AnatomicalFeatureDatabase::SetDouble(std::string tag, double value) } //-------------------------------------------------------------------- + //-------------------------------------------------------------------- double clitk::AnatomicalFeatureDatabase::GetDouble(std::string tag) { @@ -184,3 +186,13 @@ double clitk::AnatomicalFeatureDatabase::GetDouble(std::string tag) return a; } //-------------------------------------------------------------------- + + +//-------------------------------------------------------------------- +void clitk::AnatomicalFeatureDatabase::RemoveTag(TagType tag) +{ + if (TagExist(tag)) { + m_MapOfTag.erase(m_MapOfTag.find(tag)); + } +} +//--------------------------------------------------------------------