libmove3d-planners
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros Groups Pages
BaseCell.hpp
1 #ifndef BASECELL_HPP
2 #define BASECELL_HPP
3 
4 #include <libxml/parser.h>
5 
9 namespace API
10 {
11  class BaseCell
12  {
13  public:
14  BaseCell();
15  virtual ~BaseCell();
16 
17  virtual bool writeToXml(xmlNodePtr cur);
18  virtual bool readCellFromXml(xmlNodePtr cur);
19  };
20 }
21 
22 #endif // BASECELL_HPP
Definition: BaseCell.hpp:11