aboutsummaryrefslogtreecommitdiff
path: root/include/msvmmaj_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/msvmmaj_init.h')
-rw-r--r--include/msvmmaj_init.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/msvmmaj_init.h b/include/msvmmaj_init.h
new file mode 100644
index 0000000..6e2e36f
--- /dev/null
+++ b/include/msvmmaj_init.h
@@ -0,0 +1,23 @@
+/**
+ * @file msvmmaj_init.h
+ * @author Gertjan van den Burg
+ * @date January, 2014
+ * @brief Header file for msvmmaj_init.c
+ *
+ * @details
+ * Contains function declarations for the initialization functions for
+ * MajModel and MajData structures.
+ */
+
+#ifndef MSVMMAJ_INIT_H
+#define MSVMMAJ_INIT_H
+
+// forward declaration
+struct MajData;
+struct MajModel;
+
+struct MajModel *msvmmaj_init_model();
+
+struct MajData *msvmmaj_init_data();
+
+#endif