Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
cGraphLabel.h
Go to the documentation of this file.
1 //
4 //
5 
6 #ifndef _INC_GraphLabel_H
7 #define _INC_GraphLabel_H
8 #ifndef NO_PRAGMA_ONCE
9 #pragma once
10 #endif
11 #include "../GrayGraph.h"
12 
13 #ifdef _MFC_VER
14 
15 namespace GrayGraph
16 {
18 // CGraphLabel window
19 
20 class CGraphLabel : public CWnd
21 {
23 // Construction
24 public:
25  CGraphLabel();
26 
27 // Attributes
28 public:
29 
30 // Operations
31 public:
32 
33 // Overrides
34  // ClassWizard generated virtual function overrides
35  //{{AFX_VIRTUAL(CGraphLabel)
36  //}}AFX_VIRTUAL
37 
38 // Implementation
39 public:
40  virtual ~CGraphLabel();
41 
42  // Generated message map functions
43 protected:
44  //{{AFX_MSG(CGraphLabel)
45  afx_msg void OnPaint();
46  afx_msg BOOL OnEraseBkgnd(CDC* pDC);
47  //}}AFX_MSG
48 
49  DECLARE_MESSAGE_MAP()
50 };
51 
53 
54 //{{AFX_INSERT_LOCATION}}
55 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
56 };
57 
58 #endif
59 #endif // !defined(_INC_GraphLabel_H)
Definition: GrayGraph.cpp:29
cWndHandle CWnd
Definition: cWndHandle.h:669