more complex types...

This commit is contained in:
Bernhard Amann 2011-10-26 17:46:43 -07:00
parent b245d4168a
commit 86730c13dd
8 changed files with 372 additions and 31 deletions

View file

@ -30,6 +30,17 @@ void InputReader::Put(const LogVal* const *val)
input_mgr->Put(this, val);
}
void InputReader::Clear()
{
input_mgr->Clear(this);
}
void InputReader::Delete(const LogVal* const *val)
{
input_mgr->Delete(this, val);
}
bool InputReader::Init(string arg_source, int arg_num_fields,
const LogField* const * arg_fields)
{