26 lines
770 B
C++
26 lines
770 B
C++
//---------------------------------------------------------------------------
|
|
#include <vcl\vcl.h>
|
|
#pragma hdrstop
|
|
|
|
#include "TCalendario.h"
|
|
//---------------------------------------------------------------------------
|
|
static inline Calendario *ValidCtrCheck()
|
|
{
|
|
return new Calendario(NULL);
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
__fastcall Calendario::Calendario(TComponent* Owner)
|
|
: TWinControl(Owner)
|
|
{
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
namespace Tcalendario
|
|
{
|
|
void __fastcall Register()
|
|
{
|
|
TComponentClass classes[1] = {__classid(Calendario)};
|
|
RegisterComponents("JD Soft.", classes, 0);
|
|
}
|
|
}
|
|
//---------------------------------------------------------------------------
|