Qore FileDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
FileDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace FileDataProvider {
28const AppName = "Filesystem";
29
32
33public:
35 const ProviderInfo = ...;
36
37
38protected:
39 const ChildMap = ...;
40
41
42public:
43
45 constructor(*hash<auto> options) ;
46
47
49 string getName();
50
51
53 *string getDesc();
54
55
57 *list<hash<DataProviderSummaryInfo>> getChildProviderSummaryInfo();
58
59
61
63protected:
65public:
66
67
69
75protected:
76 *AbstractDataProvider getChildProviderImpl(string name);
77public:
78
79
81protected:
82 hash<DataProviderInfo> getStaticInfoImpl();
83public:
84
85};
86};
The base file data provider class.
Definition FileDataProviderBase.qc.dox.h:28
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
string getName()
Returns the data provider name.
*string getDesc()
Returns the data provider description.
constructor(*hash< auto > options)
Creates the object from constructor options.
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or NOTHING if the given child is unknown.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< hash< DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
Qore FileDataProvider module definition.
Definition FileCopyDataProvider.qc.dox.h:26
const AppName
Generic app name for the server filesystem.
Definition FileDataProvider.qc.dox.h:28