Isis 3.0 Programmer Reference
Home
ImageLeafItem.h
1 #ifndef ImageLeafItem_H
2 #define ImageLeafItem_H
3 
4 
5 #include "AbstractImageItem.h"
6 #include "AbstractLeafItem.h"
7 
8 
9 namespace Isis {
10  class ControlCubeGraphNode;
11 
12  namespace CnetViz {
13 
25  public:
27  int avgCharWidth, AbstractTreeItem *parent = 0);
28  virtual ~ImageLeafItem();
29 
30 
31  private: // Disallow copying of this class
32  ImageLeafItem(const ImageLeafItem &other);
33  const ImageLeafItem &operator=(const ImageLeafItem &other);
34  };
35  }
36 }
37 
38 #endif
Serial Number with added functionality for Control Networks.
Base class for leaf items in the tree.
Base class for an image item in the tree.
Base class for an item in the tree.
Tree item that is a leaf and represents an image.
Definition: ImageLeafItem.h:24