As reported in IOT 410, setChildren had a header entry, and
no implementation. This patch implements setChildren
Change-Id: I0f881dab27c09d72fd068c0b2d446bbfcc77a42b
Signed-off-by: Erich Keane <erich.keane@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/562
Reviewed-by: Joseph Morrow <joseph.l.morrow@intel.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Sudarshan Prasad <sudarshan.prasad@intel.com>
return m_children;
}
+ void OCRepresentation::setChildren(const std::vector<OCRepresentation>& children)
+ {
+ m_children = children;
+ }
+
void OCRepresentation::setUri(const std::string& uri)
{
m_uri = uri;