major folder reorganisation, R pkg is now epclust/ at first level. Experimental usage...
[epclust.git] / old_C_code / stage1 / src / TimeSeries / deserialize.h
diff --git a/old_C_code/stage1/src/TimeSeries/deserialize.h b/old_C_code/stage1/src/TimeSeries/deserialize.h
new file mode 100644 (file)
index 0000000..aa6a3d6
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef PPAM_DESERIALIZE_H
+#define PPAM_DESERIALIZE_H
+
+#include <stdint.h>
+#include <stdlib.h>
+#include "Util/types.h"
+
+// deserialize a portion of a binary file into an array of PowerCurve
+PowerCurve* deserialize(const char* ifileName, const char* ofileName,
+       uint32_t* ranks, uint32_t nbRanks);
+
+#endif