Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2012-06-01 01:51:40 +0400
committerJohn Langford <jl@hunch.net>2012-06-01 01:51:40 +0400
commitc93ff2677ca4ce04b8e1439a3d7327d100eedbee (patch)
tree3de2a55316b40f64109b1f79cea042aa1d9d6ca1 /vowpalwabbit/vw.h
parente9cee58cae120d044c764e13dc4590b6fe54d7b4 (diff)
library use compiles
Diffstat (limited to 'vowpalwabbit/vw.h')
-rw-r--r--vowpalwabbit/vw.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/vowpalwabbit/vw.h b/vowpalwabbit/vw.h
new file mode 100644
index 00000000..dde2f527
--- /dev/null
+++ b/vowpalwabbit/vw.h
@@ -0,0 +1,10 @@
+#ifndef VW_H
+#define VW_H
+
+#include "global_data.h"
+#include "example.h"
+vw vw_initialize(char* c);
+example* vw_read_example(vw& all, char* example_line);
+void vw_finish_example(vw& all, example* ec);
+
+#endif