summaryrefslogtreecommitdiffstats
path: root/vmchooser/inc/DataEntry.h
blob: cc8460c42116ee41eb25ccf2b624d577775ac94b (plain) (blame)
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
#ifndef DATAENTRY_H_
#define DATAENTRY_H_

#include <string>
using namespace std;

enum ImgType {
	LINUX,
	VMWARE,
	VBOX
};

struct DataEntry {

	string short_description;
	string description;

	string creator;
	string email;
	string phone;
	
	string imgname;	
	ImgType imgtype;
	string os;
	string network;	
	
	bool active;
	string pools;
	string xdm;
	int priority;
	
	string command; 
	
};

#endif /*DATAENTRY_H_*/