Qore DataProvider Module Reference  1.0.2
NullDataProviderFactory.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
25 // minimum required Qore version
26 // assume local scope for variables, do not use "$" signs
27 // require type definitions everywhere
28 // strict argument handling
29 // enable all warnings
30 
32 namespace DataProvider {
35 
36 public:
37 protected:
38  static Class cls = new Class("NullDataProvider");
39 
40 public:
41 
43  string getName();
44 
45 
47  hash<DataProviderInfo> getInfo();
48 
49 
51  Class getClass();
52 
53 };
54 };
DataProvider::AbstractDataProviderFactory
Data provider factory class.
Definition: AbstractDataProviderFactory.qc.dox.h:34
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:34