libinvdb/source/include/dbcontainerptr.hh

16 lines
282 B
C++

#ifndef INVENTORY_DBCONTAINERPTR_HH_
#define INVENTORY_DBCONTAINERPTR_HH_
#include "dbobjectvec.hh"
#include <memory>
namespace inventory {
namespace datamodel {
template<class T, template<class> class Container>
using DBContainerPtr = std::shared_ptr<Container<T>>;
}
}
#endif