git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
27 lines
930 B
C++
27 lines
930 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef SelectStorageUnitH
|
|
#define SelectStorageUnitH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TSelectStorage : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TGroupBox *GroupBox1;
|
|
TRadioButton *rbDBStorage;
|
|
TRadioButton *rbUnboundStorage;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TSelectStorage(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TSelectStorage *SelectStorage;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|