libinvdb/source/include/dbobjectmap.hh

16 lines
229 B
C++

#ifndef INVENTORY_OBJECT_MAP_
#define INVENTORY_OBJECT_MAP_
#include <map>
#include "dbobjectptr.hh"
namespace inventory {
namespace datamodel {
template<class T>
using DBObjectMap = std::map<int, DBObjectPtr<T>>;
}
}
#endif