git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
23 lines
819 B
C++
23 lines
819 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef previewH
|
|
#define previewH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <DBCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TpreviewForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TDBImage *DBImage;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TpreviewForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TpreviewForm *previewForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|