Qore DataProvider Module Reference  1.2.1
QoreFloatDataTypeBase.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  const SupportedSoftOptions = ...;
40 
41 
42 public:
43 
45 
47 protected:
48  constructor(Type type, *hash<auto> options) ;
49 public:
50 
51 
53 
59  auto acceptsValue(auto value);
60 
61 
63  *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
64 
65 
66 
68 
71 
72 };
73 };
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:42
describes a data type based on softnumber with validation for parsing strings
Definition: QoreFloatDataTypeBase.qc.dox.h:34
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:98
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:88
const SupportedSoftOptions
supported soft options
Definition: QoreFloatDataTypeBase.qc.dox.h:39
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:37