123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef DEF_CATALOGEVENT
- #define DEF_CATALOGEVENT
- #include <string>
- #include <vector>
- class CatalogEvent
- {
- private:
- const std::vector<std::string>& catalog;
- public:
- CatalogEvent(const std::vector<std::string>& catalog);
- const std::vector<std::string>& getCatalog();
- };
- #endif
|