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