Wraps a Set object around an new auto-allocated individual object of type T. More...
#include <asql.hpp>
Public Attributes | |
T | data |
Object of type T that the Set is wrapped around. This is your object. | |
Private Member Functions | |
virtual size_t | numberOfSqlElements () const |
Returns 1 as it is an individual container. | |
virtual Index | getSqlIndex (const size_t index) const |
Just returns an index to data. |
Wraps a Set object around an new auto-allocated individual object of type T.
T | object type to create. |
Definition at line 487 of file asql.hpp.
virtual Index ASql::Data::IndySetBuilder< T >::getSqlIndex | ( | const size_t | index ) | const [inline, private, virtual] |
Just returns an index to data.
Implements ASql::Data::Set.
Definition at line 502 of file asql.hpp.
References ASql::Data::IndySetBuilder< T >::data.
virtual size_t ASql::Data::IndySetBuilder< T >::numberOfSqlElements | ( | ) | const [inline, private, virtual] |
Returns 1 as it is an individual container.
Implements ASql::Data::Set.
T ASql::Data::IndySetBuilder< T >::data |
Object of type T that the Set is wrapped around. This is your object.
Definition at line 493 of file asql.hpp.
Referenced by ASql::Data::IndySetBuilder< T >::getSqlIndex().