Added documentation to interfaces

Signed-off-by: Serban Waltter <serban.waltter@rinftech.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Serban Waltter
2018-06-27 15:14:24 +03:00
committed by Mihai Tudor Panu
parent 864e1eb073
commit c642e02a18
9 changed files with 54 additions and 0 deletions

View File

@ -33,6 +33,12 @@ namespace upm
{
public:
virtual ~iMotion() {}
/**
* Detects motion
*
* @return true if motion detected
*/
virtual bool motionDetected() = 0;
};
}