Qore DataProvider Module Reference
1.0.4
NullDataProviderFactory.qc.dox.h
1
// -*- mode: c++; indent-tabs-mode: nil -*-
3
25
namespace
DataProvider
{
28
class
NullDataProviderFactory
:
public
AbstractDataProviderFactory
{
29
30
public
:
31
protected
:
32
static
Class cls =
new
Class(
"NullDataProvider"
);
33
34
public
:
35
37
string
getName
();
38
39
41
hash<DataProviderInfo>
getInfo
();
42
43
45
Class
getClass
();
46
47
};
48
};
DataProvider::AbstractDataProviderFactory
Data provider factory class.
Definition:
AbstractDataProviderFactory.qc.dox.h:28
DataProvider
Qore AbstractDataField class definition.
Definition:
AbstractDataField.qc.dox.h:32
DataProvider::NullDataProviderFactory::getClass
Class getClass()
Returns the class for the data provider object.
DataProvider::NullDataProviderFactory::getName
string getName()
Returns the name of the data provider factory.
DataProvider::NullDataProviderFactory::getInfo
hash< DataProviderInfo > getInfo()
Returns static provider information.
DataProvider::NullDataProviderFactory
The null data provider factory.
Definition:
NullDataProviderFactory.qc.dox.h:28