Line | |
---|
1 | #pragma once
|
---|
2 |
|
---|
3 | class L
|
---|
4 | {
|
---|
5 | wchar_t* wide;
|
---|
6 | unsigned int nWide;
|
---|
7 |
|
---|
8 | L(void);
|
---|
9 | ~L(void);
|
---|
10 | public:
|
---|
11 |
|
---|
12 | wchar_t* operator+(const char* multi);
|
---|
13 | static L l;
|
---|
14 |
|
---|
15 | static wchar_t* clone(const char* multi);
|
---|
16 | static wchar_t* cloneW(const wchar_t* wide);
|
---|
17 | };
|
---|
18 |
|
---|
19 | class LC
|
---|
20 | {
|
---|
21 | char* narrow;
|
---|
22 | unsigned int nNarrow;
|
---|
23 |
|
---|
24 | LC(void);
|
---|
25 | ~LC(void);
|
---|
26 | public:
|
---|
27 |
|
---|
28 | char* operator-(const wchar_t* wide);
|
---|
29 | static LC c;
|
---|
30 |
|
---|
31 | static char* clone(const wchar_t* wide);
|
---|
32 | };
|
---|
Note: See
TracBrowser
for help on using the repository browser.