Qore DataProvider Module Reference
1.0.1
QoreListDataType.qc.dox.h
1
// -*- mode: c++; indent-tabs-mode: nil -*-
3
25
// assume local scope for variables, do not use "$" signs
26
// require type definitions everywhere
28
// enable all warnings
29
30
32
namespace
DataProvider
{
34
class
QoreListDataType
:
public
QoreDataType
{
35
36
public
:
37
protected
:
39
string
name
;
40
41
public
:
42
44
constructor
(Type
type
, *hash<auto>
options
) ;
45
46
48
constructor
(
string
name
, Type
type
, *hash<auto>
options
) ;
49
50
52
string
getName
();
53
54
56
protected
:
57
init
(
string
name
);
58
public
:
59
60
};
61
};
DataProvider::QoreListDataType
describes a data type based on a hash
Definition:
QoreListDataType.qc.dox.h:34
DataProvider
Qore AbstractDataField class definition.
Definition:
AbstractDataField.qc.dox.h:32
DataProvider::QoreListDataType::getName
string getName()
returns the type name
DataProvider::QoreListDataType::name
string name
the name of the type
Definition:
QoreListDataType.qc.dox.h:39
DataProvider::QoreListDataType::init
init(string name)
common constructor initialization
DataProvider::AbstractDataProviderType::options
hash< auto > options
type options
Definition:
AbstractDataProviderType.qc.dox.h:169
DataProvider::AbstractDataProviderType::constructor
constructor()
creates the type
DataProvider::QoreDataType::type
Type type
the Qore type
Definition:
QoreDataType.qc.dox.h:42
DataProvider::QoreDataType
describes a data type based on a Qore data type
Definition:
QoreDataType.qc.dox.h:37