Qore DataProvider Module Reference  2.3
QoreListDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace DataProvider {
29 
30 public:
31 protected:
33  string name;
34 
35 public:
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 
50 protected:
51  init(string name);
52 public:
53 
54 };
55 };
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:125
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:122
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