Preliminary reimplementation of voz1b1 in C++ with more modularity

This commit is contained in:
Guilhem Lavaux 2013-06-10 03:48:56 -04:00
parent 9786812b2c
commit 15d6825f5d
6 changed files with 697 additions and 4 deletions

View file

@ -0,0 +1,22 @@
#ifndef __VOZ_IO_HPP
#define __VOZ_IO_HPP
#include <string>
struct PositionData
{
float *xyz[3];
pid_t np;
void destroy()
{
for (int j = 0; j < 3; j++)
delete[] xyz[j];
}
void findExtrema();
bool readFrom(const std::string& fname);
};
#endif