File: hello.h

package info (click to toggle)
vdkbuilder2 2.4.0-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,680 kB
  • ctags: 4,989
  • sloc: cpp: 40,647; sh: 10,346; ansic: 2,718; makefile: 710; sed: 93
file content (39 lines) | stat: -rw-r--r-- 610 bytes parent folder | download | duplicates (3)
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

/*
hello Application
Main unit header file: hello.h
*/
#ifndef _hello_main_form_h_
#define _hello_main_form_h_
#include <vdk/vdk.h>
// Hello FORM  CLASS
class HelloForm: public VDKForm
{
// gui object declarations
private:
// vdkbuilder reserved gui construction
	void GUISetup(void);

public:
	HelloForm(VDKApplication* app, char* title);
	~HelloForm();
	void Setup(void);
/*
 gui setup include 
 do not patch below here
*/
#include <hello_gui.h>
};


// Hello APPLICATION  CLASS
class HelloApp: public VDKApplication
{

public:
	HelloApp(int* argc, char** argv);
	~HelloApp();
	void Setup(void);
};

#endif