Quantum Fog  0.9.3
C_ND_PROBS_TABLE.h
1 #pragma once
2 
3 #include "QFog_constants.h"
4 #include "C_TOP_PTRS.h"
5 
6 //******************************************
7 class C_ND_PROBS_TABLE : public LTableView, public C_TOP_PTRS
8 {
9 private:
10  USHORT its_nd;
11 
12 public:
13 
14  C_ND_PROBS_TABLE(LStream * inStream);
16  virtual ~C_ND_PROBS_TABLE();
17 
18  VOID DrawCell(const STableCell & inCell, const Rect & inLocalRect);
19 
20  VOID set_nd_always(USHORT nd_id);
21  VOID set_nd_if_diff(USHORT nd_id);
22 };
23 #pragma mark -
24 
25 
26 //******************************************
27 inline
28 VOID C_ND_PROBS_TABLE::set_nd_if_diff(
29 USHORT nd_id) //in
30 {
31  if(nd_id!=its_nd) set_nd_always(nd_id);
32 }
33 
Definition: C_TOP_PTRS.h:7
Definition: C_ND_PROBS_TABLE.h:7