-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCharMapings.h
More file actions
30 lines (24 loc) · 903 Bytes
/
CharMapings.h
File metadata and controls
30 lines (24 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// CharMapings.h: interface for the CCharMapings class.
//
/* class CCharMapings:
This class is responsible for holding the mapping character arrays between the character representationand the internal representation.
It contains two data members they are :
BYTE CharMapTable[46];
BYTE NoToCharTable[37];
Its constructor is responsible for filling these 2 arrays.
*/
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CHARMAPINGS_H__21A9C0BB_846D_4A1A_8ACD_81C9577314D4__INCLUDED_)
#define AFX_CHARMAPINGS_H__21A9C0BB_846D_4A1A_8ACD_81C9577314D4__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CCharMapings
{
public:
BYTE CharMapTable[46];
BYTE NoToCharTable[37];
CCharMapings();
virtual ~CCharMapings();
};
#endif // !defined(AFX_CHARMAPINGS_H__21A9C0BB_846D_4A1A_8ACD_81C9577314D4__INCLUDED_)