CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LegendItem.h
Go to the documentation of this file.
1 /*
2  * LegendItem.h
3  *
4  * Created on: Sep 24, 2012
5  * Author: aspataru
6  */
7 
8 #ifndef LEGENDITEM_H_
9 #define LEGENDITEM_H_
10 
11 #include <string>
12 
13 namespace jsoncollector {
14 class LegendItem {
15 
16 public:
18  virtual ~LegendItem();
19 
20  std::string getName() const {
21  return name_;
22  }
24  return operation_;
25  }
26 
27 private:
29 };
30 }
31 
32 #endif /* LEGENDITEM_H_ */
std::string getName() const
Definition: LegendItem.h:20
LegendItem(std::string name, std::string operation)
Definition: LegendItem.cc:13
std::string getOperation() const
Definition: LegendItem.h:23