git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
24 lines
845 B
C++
24 lines
845 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef InPlaceEditorsDemoSplashH
|
|
#define InPlaceEditorsDemoSplashH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TfrmLoading : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TfrmLoading(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfrmLoading *frmLoading;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|