All Classes Functions
MFDTextCalculator.hpp
1 #ifndef MFDTextCalculator_H
2 #define MFDTextCalculator_H
3 
4 #include "../MyDC.h"
5 
7 {
8  public:
9  MFDTextCalculator(DWORD w, DWORD h);
10  int X( int pos );
11  int Y( int pos );
12  protected:
13  private:
14 
15  const int m_lineSpacing;
16  const int m_charWidth;
17  static const int m_cNumLines;
18  static const int m_cCharLen;
19 };
20 
21 #endif // MFDTextCalculator_H