cnorxz/src/opt/hdf5/include/h5_table.cc.h

26 lines
303 B
C
Raw Normal View History

2023-01-22 15:41:42 +01:00
#ifndef __cxz_h5_table_cc_h__
#define __cxz_h5_table_cc_h__
#include "h5_table.h"
namespace CNORXZ
{
namespace hdf5
{
template <class F>
decltype(auto) iterRecords(F&& f) const
{
}
template <typename... Ts>
Table& appendRecord(const Tuple<Ts...>& t) const
{
}
}
}
#endif