1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-12 09:17:41 +03:00

Development: Add missing template interface for getting attributes

This commit is contained in:
Ruben S. Montero 2016-05-03 17:17:50 +02:00
parent dbf5cbbc1c
commit 0352b3a73b

View File

@ -350,6 +350,12 @@ public:
*/
template<typename T>
int get_template_attribute(const char * name, vector<const T*>& values) const
{
return obj_template->get(name,values);
};
template<typename T>
int get_template_attribute(const char * name, vector<T*>& values) const
{
return obj_template->get(name,values);
};