TDME2 1.9.121
View.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6/**
7 * View interface, this combines application logic, regarding a application view, with screen controllers
8 * @author Andreas Drewke
9 * @version $Id$
10 */
12{
13
14 /**
15 * Initiates the view
16 */
17 virtual void initialize() = 0;
18
19 /**
20 * Activate view
21 */
22 virtual void activate() = 0;
23
24 /**
25 * Renders the view
26 */
27 virtual void display() = 0;
28
29 /**
30 * Deactivate view
31 */
32 virtual void deactivate() = 0;
33
34 /**
35 * Disposes the view
36 */
37 virtual void dispose() = 0;
38
39 /**
40 * Tick
41 */
42 virtual void tick() = 0;
43
44 /**
45 * Destructor
46 */
47 virtual ~View() {}
48};
View interface, this combines application logic, regarding a application view, with screen controller...
Definition: View.h:12
virtual void deactivate()=0
Deactivate view.
virtual ~View()
Destructor.
Definition: View.h:47
virtual void activate()=0
Activate view.
virtual void display()=0
Renders the view.
virtual void initialize()=0
Initiates the view.
virtual void dispose()=0
Disposes the view.
virtual void tick()=0
Tick.