Quantum Fog  0.9.3
C_NET_QTABLE.h
1 #pragma once
2 #include "C_TOP_PTRS.h"
3 #include "C_QTABLE.h"
4 
5 enum QTABLE_TYPE {nd_qttype, parent_qttype, nd_state_qttype }; //nd =node
6 //******************************************
7 class C_NET_QTABLE : public C_QTABLE, public C_TOP_PTRS
8 {
9 protected:
10  USHORT its_nd;
11  QTABLE_TYPE its_qttype;//qttype = qtable type
12 public:
13  C_NET_QTABLE(LStream * inStream);
14  virtual ~C_NET_QTABLE();
15  VOID finish_create(USHORT num_of_rows, USHORT nd, QTABLE_TYPE qttype, C_DOC * doc_p, C_MAIN_VIEW * mview_p, QB_NET * net_p);
16 
17  virtual VOID get_alphabetic_map(UI_MAP & map);
18  virtual VOID get_cell_data(const TableCellT & cell, LStr255 & str);
19 
20 };
Definition: C_MAIN_VIEW.h:24
Definition: C_QTABLE.h:5
Definition: C_TOP_PTRS.h:7
Definition: QB_NET.h:34
Definition: C_DOC.h:12
Definition: C_NET_QTABLE.h:7
Definition: UI_MAP.h:7