home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
PROG
/
CUJDEC93.ZIP
/
PUGH
/
PREPROC.CPP
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-11-08
|
304 b
|
22 lines
Listing 3
template <const int i>
class INTEGER
{
#if i == O
int val;
#elif i == 1
char val;
#elif i == 2
long val;
#endif
};
should yield:
INTEGER<0> two_bytes;
INTEGER<1> one_byte;
INTEGER(2) four_bytes;
//sizeof OPERATOR SHOWS THAT EVERY INSTANTIATION OF val IS OF
TYPE int.