summaryrefslogtreecommitdiffstats
path: root/vmchooser/inc/functions.h
diff options
context:
space:
mode:
Diffstat (limited to 'vmchooser/inc/functions.h')
-rw-r--r--vmchooser/inc/functions.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vmchooser/inc/functions.h b/vmchooser/inc/functions.h
index 91dfdd1..0e5be33 100644
--- a/vmchooser/inc/functions.h
+++ b/vmchooser/inc/functions.h
@@ -1,19 +1,19 @@
#ifndef _FUNCTIONS_H_
#define _FUNCTIONS_H_
-#include <fltk/Widget.h>
#include <libxml/xpath.h>
#include <glob.h>
#include "DataEntry.h"
+#include <vector>
/* Attention: both return malloced array */
-DataEntry** readXmlDir(char* path);
-DataEntry** readLinSess(char* path);
+std::vector<DataEntry> readXmlDir(char* path);
+std::vector<DataEntry> readLinSess(char* path);
/* This is thought as a callback-function for the Select-Browser */
-void runImage(fltk::Widget* , void* p);
+void runImage(DataEntry);
/* building & executing command for different Virtualizer */
void runImage(DataEntry&, string confxml);