add imc_meta.hpp

This commit is contained in:
2021-02-08 18:09:02 +01:00
parent 09737a93fb
commit ee7f70d36f
2 changed files with 63 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
#include "imc_key.hpp"
#include "imc_block.hpp"
#include "imc_datatype.hpp"
#include "imc_meta.hpp"
//---------------------------------------------------------------------------//
@@ -26,6 +27,11 @@ namespace imc
// list of imc-blocks
std::vector<block> rawblocks_;
// collect meta-information, channel definition, etc.
imc::info imcinfo_;
imc::channel imcchannel_;
imc::abscissa xaxis_;
public:
// constructor
@@ -127,6 +133,15 @@ namespace imc
return rawblocks_;
}
// collect meta data
void parse_meta()
{
}
// parse channel's raw data
};
}