git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@7 05c56307-c608-d34a-929d-697000501d7a
26 lines
947 B
C++
26 lines
947 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef SampleDockingAboutH
|
|
#define SampleDockingAboutH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ComCtrls.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
#include "EBarsAbout.h"
|
|
//---------------------------------------------------------------------------
|
|
class TSampleDockingAboutForm : public TEBarsAboutForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TSampleDockingAboutForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TSampleDockingAboutForm *SampleDockingAboutForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|