//------------------------------------------------------ Main.cpp
#include <windows.h>
#include <stdio.h>
#include "templatea.h"
int APIENTRY WinMain(HINSTANCE hInst,HINSTANCE hPrev,LPSTR lp,int nShowCmd)
{
A < C > Prueba;
char s[100];
sprintf(s,"Valor %d",Prueba.Get());
MessageBox(0,s,0,0);
return 0;
}