Qore DataProvider Module Reference 2.7.5
Loading...
Searching...
No Matches
QoreListDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace DataProvider {
29
30public:
31protected:
33 string name;
34
35public:
36
38 constructor(Type type, *hash<auto> options, *hash<auto> tags) ;
39
40
42 constructor(string name, Type type, *hash<auto> options, *hash<auto> tags) ;
43
44
46 string getName();
47
48
50protected:
51 init(string name);
52public:
53
54};
55};
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:222
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:219
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:31
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:36
describes a data type based on a hash
Definition: QoreListDataType.qc.dox.h:28
string name
the name of the type
Definition: QoreListDataType.qc.dox.h:33
init(string name)
common constructor initialization
constructor(Type type, *hash< auto > options, *hash< auto > tags)
creates the object
string getName()
returns the type name
constructor(string name, Type type, *hash< auto > options, *hash< auto > tags)
creates the object
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27