Ilwis-Objects  1.0
GIS and Remote Sensing framework for data access and processing
 All Classes Functions Enumerations Pages
catalogconnectorfactory.h
1 #ifndef CATALOGCONNECTORFACTORY_H
2 #define CATALOGCONNECTORFACTORY_H
3 
4 #include "Kernel_global.h"
5 
6 namespace Ilwis {
7 
8 class CatalogConnector;
9 
10 class KERNELSHARED_EXPORT CatalogConnectorFactory : public AbstractFactory
11 {
12 public:
14  QList<CatalogConnector *> create(const Ilwis::Resource &location) const;
15  void add(ConnectorCreate cc);
16 
17 private:
18  QList<ConnectorCreate > _creatorsPerObject;
19 
20 
21 };
22 }
23 
24 #endif // CATALOGCONNECTORFACTORY_H