unify parameter names

This commit is contained in:
sehraf 2018-09-08 09:48:27 +02:00
parent 31b0f67e94
commit 5a961179f3
No known key found for this signature in database
GPG key ID: DF09F6EAE356B2C6

View file

@ -147,7 +147,7 @@ public:
* @param[in] service_id service to look up * @param[in] service_id service to look up
* @return name of service * @return name of service
*/ */
virtual std::string getServiceName(uint32_t service_id) = 0; virtual std::string getServiceName(uint32_t serviceId) = 0;
/** /**
* @brief getServiceItemNames return a map of service item names. * @brief getServiceItemNames return a map of service item names.
@ -156,7 +156,7 @@ public:
* @param[out] names names of items * @param[out] names names of items
* @return true on success false otherwise * @return true on success false otherwise
*/ */
virtual bool getServiceItemNames(uint32_t service_id,std::map<uint8_t,std::string>& names) = 0; virtual bool getServiceItemNames(uint32_t serviceId, std::map<uint8_t,std::string>& names) = 0;
/** /**
* @brief getServicesAllowed return a mpa with allowed service information. * @brief getServicesAllowed return a mpa with allowed service information.