/***********************************/ /* RoIS_Face_Localization.h */ /***********************************/ #include #include // http://www.omg.org/spec/RLS/20090601/Architecture.hpp namespace Face_Localization { class Command : public RoIS_Common::Command{ Returncode_t set_parameter( Integer detection_threshold, Integer minimum_interval ); }; class Query : public RoIS_Common::Query{ Returncode_t get_parameter( Integer& detection_threshold, Integer& minimum_interval ); }; class Event : public RoIS_Common::Event{ public: void face_localized( DateTime timestamp, RoIS_IdentifierList face_ref, std::vector position_data ); }; };