-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.hh
More file actions
40 lines (24 loc) · 730 Bytes
/
application.hh
File metadata and controls
40 lines (24 loc) · 730 Bytes
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
// Time-stamp: <2016-01-29 15:09:17 daniel>
#ifndef __APPLICATION_HH__
#define __APPLICATION_HH__
// Author: Daniel Mendyke [daniel@mendyke.com]
//
// application.hh: Definition of main class of this application
//
// Project NS
//-----------------------------------------------------------------------------
namespace sample {
// Wrapper around the functionality of this application
//---------------------------------------------------------------------------
class application {
public:
application();
virtual ~application();
int run();
protected:
void test_stack();
void test_queue();
private:
}; // end class application
}; // end NS sample
#endif // __APPLICATION_HH__