Qore DataProvider Module Reference 3.1
Loading...
Searching...
No Matches
QoreListDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace DataProvider {
29
30public:
32 constructor(Type type, *hash<auto> options, *hash<auto> tags) ;
33
34
36 constructor(string name, Type type, *hash<auto> options, *hash<auto> tags) ;
37
38
40protected:
41 init(string name);
42public:
43
44};
45};
*hash< auto > tags
type tags
Definition AbstractDataProviderType.qc.dox.h:155
hash< auto > options
type options
Definition AbstractDataProviderType.qc.dox.h:152
describes a data type based on a Qore data type
Definition QoreDataType.qc.dox.h:46
string name
The name of the type; if not set then the name of "type" is used instead.
Definition QoreDataType.qc.dox.h:54
Type type
the Qore type
Definition QoreDataType.qc.dox.h:51
describes a data type based on a hash
Definition QoreListDataType.qc.dox.h:28
init(string name)
common constructor initialization
constructor(Type type, *hash< auto > options, *hash< auto > tags)
creates the object
constructor(string name, Type type, *hash< auto > options, *hash< auto > tags)
creates the object
Qore AbstractDataField class definition.
Definition AbstractDataField.qc.dox.h:27