2021-09-12 22:11:31 +02:00

22 lines
655 B
C++

//---------------------------------------------------------------------------
#ifndef ElasticFormH
#define ElasticFormH
//---------------------------------------------------------------------------
#include <SysUtils.hpp>
#include <Controls.hpp>
#include <Classes.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class PACKAGE TElasticForm : public TControl
{
private:
TComponent * nOwner;
protected:
public:
void __fastcall ResizeALL(void);
__fastcall TElasticForm(TComponent* Owner);
__published:
};
//---------------------------------------------------------------------------
#endif