Rebuild.
This commit is contained in:
@@ -42,6 +42,10 @@ public:
|
||||
std::string name;
|
||||
std::string type;
|
||||
};
|
||||
struct Tag {
|
||||
std::string value;
|
||||
std::string key;
|
||||
};
|
||||
CreateEaiEciRequest();
|
||||
~CreateEaiEciRequest();
|
||||
std::string getClientToken() const;
|
||||
@@ -52,24 +56,27 @@ public:
|
||||
void setEci(const Eci &eci);
|
||||
std::string getEaisType() const;
|
||||
void setEaisType(const std::string &eaisType);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::string getResourceGroupId() const;
|
||||
void setResourceGroupId(const std::string &resourceGroupId);
|
||||
std::string getRegionId() const;
|
||||
void setRegionId(const std::string ®ionId);
|
||||
std::string getEaisName() const;
|
||||
void setEaisName(const std::string &eaisName);
|
||||
std::vector<Tag> getTag() const;
|
||||
void setTag(const std::vector<Tag> &tag);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
|
||||
private:
|
||||
std::string clientToken_;
|
||||
std::string securityGroupId_;
|
||||
Eci eci_;
|
||||
std::string eaisType_;
|
||||
std::string vSwitchId_;
|
||||
std::string resourceGroupId_;
|
||||
std::string regionId_;
|
||||
std::string eaisName_;
|
||||
std::vector<Tag> tag_;
|
||||
std::string vSwitchId_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace Eais
|
||||
|
||||
@@ -39,6 +39,10 @@ public:
|
||||
std::string type;
|
||||
std::string internetMaxBandwidthIn;
|
||||
};
|
||||
struct Tag {
|
||||
std::string value;
|
||||
std::string key;
|
||||
};
|
||||
CreateEaiEcsRequest();
|
||||
~CreateEaiEcsRequest();
|
||||
std::string getClientToken() const;
|
||||
@@ -47,8 +51,6 @@ public:
|
||||
void setSecurityGroupId(const std::string &securityGroupId);
|
||||
std::string getEaisType() const;
|
||||
void setEaisType(const std::string &eaisType);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::string getResourceGroupId() const;
|
||||
void setResourceGroupId(const std::string &resourceGroupId);
|
||||
Ecs getEcs() const;
|
||||
@@ -57,16 +59,21 @@ public:
|
||||
void setRegionId(const std::string ®ionId);
|
||||
std::string getEaisName() const;
|
||||
void setEaisName(const std::string &eaisName);
|
||||
std::vector<Tag> getTag() const;
|
||||
void setTag(const std::vector<Tag> &tag);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
|
||||
private:
|
||||
std::string clientToken_;
|
||||
std::string securityGroupId_;
|
||||
std::string eaisType_;
|
||||
std::string vSwitchId_;
|
||||
std::string resourceGroupId_;
|
||||
Ecs ecs_;
|
||||
std::string regionId_;
|
||||
std::string eaisName_;
|
||||
std::vector<Tag> tag_;
|
||||
std::string vSwitchId_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace Eais
|
||||
|
||||
@@ -28,6 +28,10 @@ namespace Eais {
|
||||
namespace Model {
|
||||
class ALIBABACLOUD_EAIS_EXPORT CreateEaiJupyterRequest : public RpcServiceRequest {
|
||||
public:
|
||||
struct Tag {
|
||||
std::string value;
|
||||
std::string key;
|
||||
};
|
||||
struct EnvironmentVar {
|
||||
std::string value;
|
||||
std::string key;
|
||||
@@ -40,26 +44,29 @@ public:
|
||||
void setSecurityGroupId(const std::string &securityGroupId);
|
||||
std::string getEaisType() const;
|
||||
void setEaisType(const std::string &eaisType);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::string getResourceGroupId() const;
|
||||
void setResourceGroupId(const std::string &resourceGroupId);
|
||||
std::string getRegionId() const;
|
||||
void setRegionId(const std::string ®ionId);
|
||||
std::vector<EnvironmentVar> getEnvironmentVar() const;
|
||||
void setEnvironmentVar(const std::vector<EnvironmentVar> &environmentVar);
|
||||
std::string getEaisName() const;
|
||||
void setEaisName(const std::string &eaisName);
|
||||
std::vector<Tag> getTag() const;
|
||||
void setTag(const std::vector<Tag> &tag);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::vector<EnvironmentVar> getEnvironmentVar() const;
|
||||
void setEnvironmentVar(const std::vector<EnvironmentVar> &environmentVar);
|
||||
|
||||
private:
|
||||
std::string clientToken_;
|
||||
std::string securityGroupId_;
|
||||
std::string eaisType_;
|
||||
std::string vSwitchId_;
|
||||
std::string resourceGroupId_;
|
||||
std::string regionId_;
|
||||
std::vector<EnvironmentVar> environmentVar_;
|
||||
std::string eaisName_;
|
||||
std::vector<Tag> tag_;
|
||||
std::string vSwitchId_;
|
||||
std::vector<EnvironmentVar> environmentVar_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace Eais
|
||||
|
||||
@@ -28,34 +28,41 @@ namespace Eais {
|
||||
namespace Model {
|
||||
class ALIBABACLOUD_EAIS_EXPORT CreateEaiRequest : public RpcServiceRequest {
|
||||
public:
|
||||
struct Tag {
|
||||
std::string value;
|
||||
std::string key;
|
||||
};
|
||||
CreateEaiRequest();
|
||||
~CreateEaiRequest();
|
||||
std::string getImage() const;
|
||||
void setImage(const std::string &image);
|
||||
std::string getClientToken() const;
|
||||
void setClientToken(const std::string &clientToken);
|
||||
std::string getSecurityGroupId() const;
|
||||
void setSecurityGroupId(const std::string &securityGroupId);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::string getResourceGroupId() const;
|
||||
void setResourceGroupId(const std::string &resourceGroupId);
|
||||
std::string getInstanceName() const;
|
||||
void setInstanceName(const std::string &instanceName);
|
||||
std::string getRegionId() const;
|
||||
void setRegionId(const std::string ®ionId);
|
||||
std::string getInstanceType() const;
|
||||
void setInstanceType(const std::string &instanceType);
|
||||
std::vector<Tag> getTag() const;
|
||||
void setTag(const std::vector<Tag> &tag);
|
||||
std::string getImage() const;
|
||||
void setImage(const std::string &image);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::string getInstanceName() const;
|
||||
void setInstanceName(const std::string &instanceName);
|
||||
|
||||
private:
|
||||
std::string image_;
|
||||
std::string clientToken_;
|
||||
std::string securityGroupId_;
|
||||
std::string vSwitchId_;
|
||||
std::string resourceGroupId_;
|
||||
std::string instanceName_;
|
||||
std::string regionId_;
|
||||
std::string instanceType_;
|
||||
std::vector<Tag> tag_;
|
||||
std::string image_;
|
||||
std::string vSwitchId_;
|
||||
std::string instanceName_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace Eais
|
||||
|
||||
@@ -28,31 +28,38 @@ namespace Eais {
|
||||
namespace Model {
|
||||
class ALIBABACLOUD_EAIS_EXPORT CreateEaisEiRequest : public RpcServiceRequest {
|
||||
public:
|
||||
struct Tag {
|
||||
std::string value;
|
||||
std::string key;
|
||||
};
|
||||
CreateEaisEiRequest();
|
||||
~CreateEaisEiRequest();
|
||||
std::string getClientToken() const;
|
||||
void setClientToken(const std::string &clientToken);
|
||||
std::string getSecurityGroupId() const;
|
||||
void setSecurityGroupId(const std::string &securityGroupId);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::string getResourceGroupId() const;
|
||||
void setResourceGroupId(const std::string &resourceGroupId);
|
||||
std::string getInstanceName() const;
|
||||
void setInstanceName(const std::string &instanceName);
|
||||
std::string getRegionId() const;
|
||||
void setRegionId(const std::string ®ionId);
|
||||
std::string getInstanceType() const;
|
||||
void setInstanceType(const std::string &instanceType);
|
||||
std::vector<Tag> getTag() const;
|
||||
void setTag(const std::vector<Tag> &tag);
|
||||
std::string getVSwitchId() const;
|
||||
void setVSwitchId(const std::string &vSwitchId);
|
||||
std::string getInstanceName() const;
|
||||
void setInstanceName(const std::string &instanceName);
|
||||
|
||||
private:
|
||||
std::string clientToken_;
|
||||
std::string securityGroupId_;
|
||||
std::string vSwitchId_;
|
||||
std::string resourceGroupId_;
|
||||
std::string instanceName_;
|
||||
std::string regionId_;
|
||||
std::string instanceType_;
|
||||
std::vector<Tag> tag_;
|
||||
std::string vSwitchId_;
|
||||
std::string instanceName_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace Eais
|
||||
|
||||
@@ -69,15 +69,6 @@ void CreateEaiEciRequest::setEaisType(const std::string &eaisType) {
|
||||
setParameter(std::string("EaisType"), eaisType);
|
||||
}
|
||||
|
||||
std::string CreateEaiEciRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEciRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiEciRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -105,3 +96,26 @@ void CreateEaiEciRequest::setEaisName(const std::string &eaisName) {
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiEciRequest::Tag> CreateEaiEciRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiEciRequest::setTag(const std::vector<CreateEaiEciRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiEciRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEciRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
|
||||
@@ -52,15 +52,6 @@ void CreateEaiEcsRequest::setEaisType(const std::string &eaisType) {
|
||||
setParameter(std::string("EaisType"), eaisType);
|
||||
}
|
||||
|
||||
std::string CreateEaiEcsRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEcsRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiEcsRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -105,3 +96,26 @@ void CreateEaiEcsRequest::setEaisName(const std::string &eaisName) {
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiEcsRequest::Tag> CreateEaiEcsRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiEcsRequest::setTag(const std::vector<CreateEaiEcsRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiEcsRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEcsRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
|
||||
@@ -52,15 +52,6 @@ void CreateEaiJupyterRequest::setEaisType(const std::string &eaisType) {
|
||||
setParameter(std::string("EaisType"), eaisType);
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -79,6 +70,38 @@ void CreateEaiJupyterRequest::setRegionId(const std::string ®ionId) {
|
||||
setParameter(std::string("RegionId"), regionId);
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getEaisName() const {
|
||||
return eaisName_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setEaisName(const std::string &eaisName) {
|
||||
eaisName_ = eaisName;
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiJupyterRequest::Tag> CreateEaiJupyterRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setTag(const std::vector<CreateEaiJupyterRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiJupyterRequest::EnvironmentVar> CreateEaiJupyterRequest::getEnvironmentVar() const {
|
||||
return environmentVar_;
|
||||
}
|
||||
@@ -91,12 +114,3 @@ void CreateEaiJupyterRequest::setEnvironmentVar(const std::vector<CreateEaiJupyt
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getEaisName() const {
|
||||
return eaisName_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setEaisName(const std::string &eaisName) {
|
||||
eaisName_ = eaisName;
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
|
||||
@@ -25,15 +25,6 @@ CreateEaiRequest::CreateEaiRequest()
|
||||
|
||||
CreateEaiRequest::~CreateEaiRequest() {}
|
||||
|
||||
std::string CreateEaiRequest::getImage() const {
|
||||
return image_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setImage(const std::string &image) {
|
||||
image_ = image;
|
||||
setParameter(std::string("Image"), image);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getClientToken() const {
|
||||
return clientToken_;
|
||||
}
|
||||
@@ -52,15 +43,6 @@ void CreateEaiRequest::setSecurityGroupId(const std::string &securityGroupId) {
|
||||
setParameter(std::string("SecurityGroupId"), securityGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -70,15 +52,6 @@ void CreateEaiRequest::setResourceGroupId(const std::string &resourceGroupId) {
|
||||
setParameter(std::string("ResourceGroupId"), resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getRegionId() const {
|
||||
return regionId_;
|
||||
}
|
||||
@@ -97,3 +70,44 @@ void CreateEaiRequest::setInstanceType(const std::string &instanceType) {
|
||||
setParameter(std::string("InstanceType"), instanceType);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiRequest::Tag> CreateEaiRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setTag(const std::vector<CreateEaiRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getImage() const {
|
||||
return image_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setImage(const std::string &image) {
|
||||
image_ = image;
|
||||
setParameter(std::string("Image"), image);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
|
||||
@@ -43,15 +43,6 @@ void CreateEaisEiRequest::setSecurityGroupId(const std::string &securityGroupId)
|
||||
setParameter(std::string("SecurityGroupId"), securityGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -61,15 +52,6 @@ void CreateEaisEiRequest::setResourceGroupId(const std::string &resourceGroupId)
|
||||
setParameter(std::string("ResourceGroupId"), resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getRegionId() const {
|
||||
return regionId_;
|
||||
}
|
||||
@@ -88,3 +70,35 @@ void CreateEaisEiRequest::setInstanceType(const std::string &instanceType) {
|
||||
setParameter(std::string("InstanceType"), instanceType);
|
||||
}
|
||||
|
||||
std::vector<CreateEaisEiRequest::Tag> CreateEaisEiRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setTag(const std::vector<CreateEaisEiRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user