DoxyBugs  1
ScenarioCellBase.h
Go to the documentation of this file.
1 //================================================================================
2 // Copyright (C) NAB 2010
3 //================================================================================
4 
6 
7 #if !defined cmif_ScenarioCellBase_h
8 #define cmif_ScenarioCellBase_h
9 
10 #include "Node.h"
11 #include "Printable.h"
12 
13 namespace cmif
14 {
16  class modelCellExport ScenarioCellBase:
17  public nab::Printable,
18  public nab::Node<ScenarioCellBase>
19  {
20  public:
21 
22 
23  // overridden virtual methods
24  void pushRoot(ScenarioCellBase* p);
25  void print(std::ostream& os) const;
26 
27  protected:
28 
29  };
30 
31 }
32 
33 #endif // cmif_ScenarioCellBase_h
34 
35 //================================================================================
36 // Copyright (C) NAB 2010
37 //================================================================================