aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_io.h
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 18:47:09 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 18:47:09 +0200
commit044dc5a93c33d7aa4c9c98a626890c16446a56fc (patch)
tree23cc17a595d36a35ad9cb50e3ab18c2956b5f65c /include/gensvm_io.h
parentMove includes to header (diff)
downloadgensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.tar.gz
gensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.zip
major refactor of the code
Diffstat (limited to 'include/gensvm_io.h')
-rw-r--r--include/gensvm_io.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/gensvm_io.h b/include/gensvm_io.h
index 4581c5f..9b0d973 100644
--- a/include/gensvm_io.h
+++ b/include/gensvm_io.h
@@ -12,9 +12,9 @@
#ifndef GENSVM_IO_H
#define GENSVM_IO_H
-// forward declarations
-struct GenData;
-struct GenModel;
+// includes
+#include "gensvm_base.h"
+#include "gensvm_strutil.h"
// function declarations
void gensvm_read_data(struct GenData *dataset, char *data_file);
@@ -24,5 +24,6 @@ void gensvm_write_model(struct GenModel *model, char *output_filename);
void gensvm_write_predictions(struct GenData *data, long *predy,
char *output_filename);
+void gensvm_time_string(char *buffer);
#endif