Qore SoapDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
SoapDataProviderFactory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace SoapDataProvider {
28class SoapDataProviderFactory : public AbstractDataProviderFactory {
29
30public:
31protected:
33 static Class cls = new Class("SoapDataProvider");
34
36 const FactoryInfo = ...;
37
38
39public:
40
42
44protected:
45 hash<DataProviderFactoryInfo> getInfoImpl();
46public:
47
48
50
52protected:
53 hash<DataProviderInfo> getProviderInfoImpl();
54public:
55
56
58protected:
59 Class getClassImpl();
60public:
61
62};
63};
The SOAP data provider factory.
Definition SoapDataProviderFactory.qc.dox.h:28
Class getClassImpl()
Returns the class for the data provider object.
static Class cls
Data provider type info.
Definition SoapDataProviderFactory.qc.dox.h:33
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
const FactoryInfo
Factory info.
Definition SoapDataProviderFactory.qc.dox.h:36
Qore SoapDataProvider module definition.
Definition SoapDataProvider.qc.dox.h:26