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