|
label/LabelSet.hppGo 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 00009 00010 #ifndef LABELSET_HPP_ 00011 #define LABELSET_HPP_ 00012 00013 #include <set> 00014 #include <string> 00015 #include "LabelMap.hpp" 00016 00017 using namespace std; 00018 00019 namespace cosi { 00020 00035 template< class T2> class LabelSet { 00036 public: 00037 LabelSet( ){ }; 00038 ~LabelSet(){}; 00039 private: 00040 set< LabelMap<T2> > mL ; 00041 }; 00042 00043 } 00044 00045 #endif /*LABELSET_HPP_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |