query/include/matador/object/collection.hpp

20 lines
243 B
C++

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