|
label/Label.hGo to the documentation of this file.00001 //============================================================================ 00002 // Author : Alessandro Pinto <apinto@eecs.berkeley.edu> 00003 // University of California, Berkeley 00004 // 545 Cory Hall, Berkeley, CA 94720 00005 // Copyright : See COPYING file that comes with this distribution 00006 //============================================================================ 00007 00008 #ifndef LABEL_H_ 00009 #define LABEL_H_ 00010 00011 #include <string> 00012 #include <set> 00013 00014 namespace cosi 00015 { 00016 00017 class Label 00018 { 00019 std::multiset<std::string> mQnames ; 00020 public: 00021 Label(); 00022 virtual ~Label(); 00023 std::multiset<std::string> GetQuantityNames( ) ; 00024 bool HasQuantity( std::string pName); 00025 void AddQuantityName(std::string pName) ; 00026 virtual std::string Print() = 0 ; 00027 }; 00028 00029 } 00030 00031 #endif /*LABEL_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |