30 lines
629 B
C++
30 lines
629 B
C++
// -------------------------------------------------------------------------- //
|
|
|
|
#include "tdm_reaper.hpp"
|
|
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
tdm_ripper::tdm_ripper(std::string tdmfile, std::string tdxfile,
|
|
bool suppress_status, bool neglect_empty_groups)
|
|
{
|
|
|
|
|
|
}
|
|
|
|
void tdm_ripper::print_channel(int idx, char const* name, int width)
|
|
{
|
|
|
|
}
|
|
|
|
void tdm_ripper::list_groups(std::ostream& out, int g, int c)
|
|
{
|
|
|
|
}
|
|
|
|
void tdm_ripper::list_channels(std::ostream& out, int g, int c)
|
|
{
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------- //
|