home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
cset21v1.zip
/
IBMCPP
/
TUTORIAL
/
DEBUGGER
/
NEST
/
NEST.CPP
next >
Wrap
Text File
|
1993-05-13
|
411b
|
26 lines
#include <iostream.h>
#include "nesttpl.h"
template <class E> class outer1 : public outer <E, int> {};
void main()
{
int j=0;
int excpt;
cout << "Hello, here is the main program.\n";
outer<int, int> oi;
oi.hello(14);
outer1<int> oi1;
oi1.hello(14);
outer<int, char*>::inner iic;
iic.hello(14, "YES");
excpt=2/j;
}