File indexing completed on 2024-04-14 04:29:46

0001 #include "%{APPNAMELC}.h"
0002 #include <iostream>
0003 
0004 using namespace std;
0005 
0006 int main(int argc, char** argv)
0007 {
0008   %{APPNAMEID}* instance = new %{APPNAMEID};
0009   cout << "Created an instance of %{APPNAMEID}";
0010   delete instance;
0011   cout << "Deleted the instance";
0012 }