#ifndef COLLECTION_HPP #define COLLECTION_HPP #include namespace matador::object { template < class Type > class collection { public: private: std::vector data_; }; } #endif //COLLECTION_HPP