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:
parent
dbf5cbbc1c
commit
0352b3a73b
@ -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);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user