comservatory
Strict validation of CSV files in C++
|
Template class for a field of a known type. More...
#include <Field.hpp>
Public Member Functions | |
Type | type () const |
virtual void | push_back (T x)=0 |
Public Member Functions inherited from comservatory::Field | |
virtual size_t | size () const =0 |
virtual Type | type () const =0 |
virtual void | add_missing ()=0 |
virtual bool | filled () const |
Template class for a field of a known type.
T | Data type used to store the values. |
tt | The Type to be returned by type() . |
|
pure virtual |
x | Value to be appended to the TypedField 's vector of values. |
Implemented in comservatory::FilledField< T, tt >, and comservatory::DummyField< T, tt >.
|
inlinevirtual |
Implements comservatory::Field.