DoxyBugs  1
Node.h
Go to the documentation of this file.
1 //================================================================================
2 // Copyright (C) NAB 2012
3 //================================================================================
4 
6 
7 #if !defined nab_Node_h
8 #define nab_Node_h
9 
10 #include <boost/noncopyable.hpp>
11 
12 namespace nab
13 {
14 
16  template <typename T>
17  class Node:
18  boost::noncopyable
19  {
20  public:
21 
25  virtual void pushRoot(T* p)
26  {
27  }
28 
29  };
30 
31 }
32 
33 #endif // nab_Node_h
34 
35 //================================================================================
36 // Copyright (C) NAB 2012
37 //================================================================================