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.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/msvmmaj_init.h b/include/msvmmaj_init.h
deleted file mode 100644
index 281214c..0000000
--- a/include/msvmmaj_init.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * @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();
-
-void msvmmaj_allocate_model(struct MajModel *model);
-void msvmmaj_reallocate_model(struct MajModel *model, long n, long m);
-void msvmmaj_free_model(struct MajModel *model);
-void msvmmaj_free_data(struct MajData *data);
-
-#endif