Qore DataProvider Module Reference  2.1.2
QoreListDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
25 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 };
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:42
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:118
string getName()
returns the type name
string name
the name of the type
Definition: QoreListDataType.qc.dox.h:33
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:115
init(string name)
common constructor initialization
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27
describes a data type based on a hash
Definition: QoreListDataType.qc.dox.h:28
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:37