1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-25 02:50:08 +03:00

Changed XML template element tag name to avoid possible future conflicts.

git-svn-id: http://svn.opennebula.org/one/trunk@398 3034c82b-c49b-4eb3-8279-a7acafdc01c0
This commit is contained in:
Constantino Vázquez Blanco 2009-03-10 17:32:04 +00:00
parent ed8ceecd35
commit 06dbeae737
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ class HostTemplate : public TemplateSQL
public:
HostTemplate(int tid = -1,
const char separator = '='):
TemplateSQL(table,tid,true,separator,"HOST"){};
TemplateSQL(table,tid,true,separator,"HOST_TEMPLATE"){};
~HostTemplate(){};

View File

@ -29,7 +29,7 @@ class VirtualMachineTemplate : public TemplateSQL
{
public:
VirtualMachineTemplate(int tid = -1):
TemplateSQL(table,tid,false,'=',"VM"){};
TemplateSQL(table,tid,false,'=',"VM_TEMPLATE"){};
~VirtualMachineTemplate(){};

View File

@ -29,7 +29,7 @@ class VirtualNetworkTemplate : public TemplateSQL
{
public:
VirtualNetworkTemplate(int tid = -1):
TemplateSQL(table,tid,false,'=',"NETWORK"){};
TemplateSQL(table,tid,false,'=',"NETWORK_TEMPLATE"){};
~VirtualNetworkTemplate(){};