#include <Record.h>
List of all members.
Detailed Description
Definition at line 15 of file Record.h.
Constructor & Destructor Documentation
ora::RecordSpec::RecordSpec |
( |
| ) |
|
ora::RecordSpec::~RecordSpec |
( |
| ) |
|
Member Function Documentation
size_t ora::RecordSpec::add |
( |
std::string const & |
name, |
|
|
std::type_info const & |
type |
|
) |
| |
Definition at line 37 of file Record.cc.
References specs.
{
TypeHandler const * th = allKnowTypeHandlers(type);
specs->items.push_back(RecordSpecImpl::Item(name,th));
specs->indexes.insert(std::make_pair(specs->items.back().name,(int)(specs->items.size())-1));
return specs->items.size()-1;
}
Friends And Related Function Documentation
Member Data Documentation