source: GTP/trunk/App/Demos/Illum/pathmap/L.h @ 2197

Revision 2197, 454 bytes checked in by szirmay, 17 years ago (diff)
Line 
1#pragma once
2
3class L
4{
5        wchar_t* wide;
6        unsigned int nWide;
7
8        L(void);
9        ~L(void);
10public:
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
19class LC
20{
21        char* narrow;
22        unsigned int nNarrow;
23
24        LC(void);
25        ~LC(void);
26public:
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.