From: coderhyme Date: Tue, 16 Jun 2015 08:24:55 +0000 (+0900) Subject: Format source to follow coding standard X-Git-Tag: 1.2.0+RC1~1430^2~123 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb2265cdb0e087256f5a91617f5b9bf668a35146;p=platform%2Fupstream%2Fiotivity.git Format source to follow coding standard Change-Id: I9de351d67b64580ea22a7b3084d4234464ce7c56 Signed-off-by: coderhyme Reviewed-on: https://gerrit.iotivity.org/gerrit/1316 Reviewed-by: Uze Choi Tested-by: Uze Choi --- diff --git a/service/basis/common/primitiveResource/include/PrimitiveResource.h b/service/basis/common/primitiveResource/include/PrimitiveResource.h index a3a0a34..8f7e411 100755 --- a/service/basis/common/primitiveResource/include/PrimitiveResource.h +++ b/service/basis/common/primitiveResource/include/PrimitiveResource.h @@ -43,11 +43,14 @@ namespace OIC public: using Ptr = std::shared_ptr; - using GetCallback = std::function; + using GetCallback = std::function< + void(const HeaderOptions&, const ResponseStatement&, int)>; - using SetCallback = std::function; + using SetCallback = std::function< + void(const HeaderOptions&, const ResponseStatement&, int)>; - using ObserveCallback = std::function; + using ObserveCallback = std::function< + void(const HeaderOptions&, const ResponseStatement&, int, int)>; private: using BaseResource = OC::OCResource;