//--------------------------------------------------------------------------- #include #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); } } //---------------------------------------------------------------------------