First commit 19/07/1998
This commit is contained in:
25
TCalendario.cpp
Normal file
25
TCalendario.cpp
Normal file
@ -0,0 +1,25 @@
|
||||
//---------------------------------------------------------------------------
|
||||
#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);
|
||||
}
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
Reference in New Issue
Block a user