-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTamanioPila.h
executable file
·42 lines (37 loc) · 1.34 KB
/
TamanioPila.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*---------------------------------------------------------------------------*\
| Archivo : TamanioPila.h |
| Proyecto : Prolog.bpr |
| Programado por: Patricio Merino - Paul Leger. |
| Descripción : Esta librería empaqueta la clase TForm7 para ser usada en |
| otros archivos. |
| Usada por : Editor.cpp, TamanioPila.cpp. |
\*---------------------------------------------------------------------------*/
#ifndef ConfiguradorH
#define ConfiguradorH
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "Meta.h"
#include "Editor.h"
#include <Dialogs.hpp>
#include <ComCtrls.hpp>
class TForm7 : public TForm
{
__published:
TGroupBox *GroupBox1;
TScrollBar *ScrollBar1;
TLabel *Label1;
TLabel *Label2;
TButton *Button5;
TButton *Button1;
void __fastcall muestraTamanio(TObject *Sender);
void __fastcall Button5Click(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
private:
public:
__fastcall TForm7(TComponent* Owner);
void porDefecto();
};
extern PACKAGE TForm7 *Form7;
#endif