-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModelViewer.h
28 lines (27 loc) · 1.06 KB
/
ModelViewer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//---------------------------------------------------------------------------
#ifndef ModelViewerH
#define ModelViewerH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class Tfrm_modelviewer : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
void __fastcall FormDestroy(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall FormResize(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall Tfrm_modelviewer(TComponent* Owner);
void _fastcall getDraw(TObject *o, bool &b);
void updateForm();
};
//---------------------------------------------------------------------------
extern PACKAGE Tfrm_modelviewer *frm_modelviewer;
//---------------------------------------------------------------------------
#endif