query/include/matador/object/collection.hpp

19 lines
214 B
C++

#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