Qore DataProvider Module Reference  1.0.4
QoreBoolDataTypeBase.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:
38 
40 protected:
41  constructor(Type type, *hash<auto> options) ;
42 public:
43 
44 
46 
52  auto acceptsValue(auto value);
53 
54 
56 
59 
60 };
61 };
DataProvider::AbstractDataProviderType
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:93
DataProvider
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:32
DataProvider::QoreBoolDataTypeBase::constructor
constructor(Type type, *hash< auto > options)
creates the object
DataProvider::QoreBoolDataTypeBase
describes a data type based on softint with validation for parsing strings
Definition: QoreBoolDataTypeBase.qc.dox.h:34
DataProvider::QoreBoolDataTypeBase::getSoftType
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
DataProvider::AbstractDataProviderType::options
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:103
DataProvider::QoreBoolDataTypeBase::acceptsValue
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
DataProvider::QoreDataType::type
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:42
DataProvider::QoreDataType
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:37