Isis 3.0
Home
ImageLeafItem.h
Go to the documentation of this file.
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.
Definition: ControlCubeGraphNode.h:67
ImageLeafItem(ControlCubeGraphNode *node, int avgCharWidth, AbstractTreeItem *parent=0)
Definition: ImageLeafItem.cpp:8
Base class for leaf items in the tree.
Definition: AbstractLeafItem.h:24
Base class for an image item in the tree.
Definition: AbstractImageItem.h:28
Base class for an item in the tree.
Definition: AbstractTreeItem.h:31
AbstractTreeItem * parent() const
Definition: AbstractTreeItem.cpp:39
virtual ~ImageLeafItem()
Definition: ImageLeafItem.cpp:14
Tree item that is a leaf and represents an image.
Definition: ImageLeafItem.h:24