-
Notifications
You must be signed in to change notification settings - Fork 0
/
GUI.h
45 lines (36 loc) · 842 Bytes
/
GUI.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
43
44
45
/**
* GUI.h
*
* Created on: Aug 9, 2011
* Author: Jeroen Vlek
* Email: [email protected]
* Website: www.perceptivebits.com
* License: Free Beer (Feel free to use it in every
* way possible and if you like it, make
* sure to give me credit and buy me a drink
* if we ever meet ;) )
*/
#ifndef GUI_H_
#define GUI_H_
#include <string>
#include "PhenotypeImage.h"
class GUI
{
public:
virtual ~GUI();
/**
* Loads and displays the TargetImage.
*
* @return True on success, false on failure
*/
virtual bool loadTargetImage() =0;
/**
* Displays the given PhenotypeImage at index.
* @param index
* @param phenotypeImage
*/
virtual void displayPhenotypeImage(unsigned int index, PhenotypeImage& phenotypeImage) =0;
protected:
GUI();
};
#endif /* GUI_H_ */