FooBar
label.h
Go to the documentation of this file.
1 #ifndef _LABEL_h_
2 #define _LABEL_h_
3 
4 #include <string>
5 
6 class Label
7 {
8  friend class Serialization;
9 public:
10  std::string name;
11 };
12 
13 #endif