20 lines
710 B
C++
20 lines
710 B
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
|
||
|
|
#include "SimpleVerticalGridDemoData.h"
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
#pragma link "cxClasses"
|
||
|
|
#pragma link "cxStyles"
|
||
|
|
#pragma link "cxVGrid"
|
||
|
|
#pragma resource "*.dfm"
|
||
|
|
TSimpleVerticalGridDemoMainDM *SimpleVerticalGridDemoMainDM;
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
__fastcall TSimpleVerticalGridDemoMainDM::TSimpleVerticalGridDemoMainDM(TComponent* Owner)
|
||
|
|
: TDataModule(Owner)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|