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