libinvdb/source/include/dbobjectptr.hh

12 lines
175 B
C++

#ifndef INVENTORY_DBOBJECTPTR_HH
#include <memory>
namespace inventory {
namespace datamodel {
template <class T>
using DBObjectPtr = std::shared_ptr<T>;
}
}
#endif