libinvdb/source/include/dbobjectvec.hh

16 lines
242 B
C++

#ifndef INVENTORY_DBOBJECTVEC_HH_
#define INVENTORY_DBOBJECTVEC_HH_
#include "dbobjectptr.hh"
#include <vector>
namespace inventory {
namespace datamodel {
template <class T>
using DBObjectVector = std::vector<DBObjectPtr<T>>;
}
}
#endif