Qore DataProvider Module Reference  1.2.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 {
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 };
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:42
string getName()
returns the type name
string name
the name of the type
Definition: QoreListDataType.qc.dox.h:39
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:98
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:34
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:37