Library: UPnP/ServiceDesc
Package: ServiceDesc
Header: Poco/UPnP/ServiceDesc/Argument.h
Member Functions: direction, name, operator =, parameterName, setDirection, setName, setStateVariable, stateVariable
DIR_IN = 0
input parameter
output parameter
return value
Argument();
Creates the Argument.
Argument(
const Argument & arg
);
Creates the Argument by copying another one.
~Argument();
Destroys the Argument.
Direction direction() const;
Returns the kind of parameter (input, output or return value).
const std::string & name() const;
Returns the name of the argument.
Argument & operator = (
const Argument & param405
);
Assignment operator.
std::string parameterName() const;
Returns a transformation of the parameter name to a valid C++ identifier.
const std::string & stateVariable() const;
Returns the name of the related state variable in the service's state variable table.
void setDirection(
Direction dir
);
Sets the direction of the argument.
void setName(
const std::string & name
);
Sets the name of the argument.
void setStateVariable(
const std::string & name
);
Sets the name of the related state variable.