Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef ZORBA_STATICCOLLECTIONMANAGER_API_H
00017 #define ZORBA_STATICCOLLECTIONMANAGER_API_H
00018
00019 #include <zorba/config.h>
00020 #include <zorba/api_shared_types.h>
00021 #include <zorba/collection_manager.h>
00022
00023 namespace zorba {
00024
00025
00026
00027
00028 class ZORBA_DLL_PUBLIC StaticCollectionManager : public CollectionManager
00029 {
00030 public:
00031 virtual ItemSequence_t
00032 declaredCollections() const = 0;
00033
00034 virtual bool
00035 isDeclaredCollection(const Item& aQName) const = 0;
00036
00037 virtual ~StaticCollectionManager() {}
00038
00039 };
00040
00041 }
00042 #endif
00043