Isis 3.0
Home
ImageParentItem.h
Go to the documentation of this file.
1 #ifndef ImageParentItem_H
2 #define ImageParentItem_H
3 
4 
5 #include "AbstractImageItem.h"
6 #include "AbstractParentItem.h"
7 
8 
9 namespace Isis {
10  class ControlCubeGraphNode;
11 
12  namespace CnetViz {
13 
25  public:
27  int avgCharWidth, AbstractTreeItem *parent = 0);
28  virtual ~ImageParentItem();
29 
30 
31  private: // Disallow copying of this class
32  ImageParentItem(const ImageParentItem &other);
33  const ImageParentItem &operator=(const ImageParentItem &other);
34  };
35  }
36 }
37 
38 #endif
virtual ~ImageParentItem()
Definition: ImageParentItem.cpp:14
Serial Number with added functionality for Control Networks.
Definition: ControlCubeGraphNode.h:67
ImageParentItem(ControlCubeGraphNode *node, int avgCharWidth, AbstractTreeItem *parent=0)
Definition: ImageParentItem.cpp:8
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
Base class for an item that is a parent in the tree.
Definition: AbstractParentItem.h:27
Tree item that is a parent and represents an image.
Definition: ImageParentItem.h:24