diff --git a/src/models/action.h b/src/models/action.h index e6bcfa8..7f22827 100644 --- a/src/models/action.h +++ b/src/models/action.h @@ -14,13 +14,13 @@ namespace obelisk { private: /** - * @brief The ID of the action in the knowledge base. + * @brief The ID of the Action in the knowledge base. * */ int id_; /** - * @brief The name of the action. + * @brief The name of the Action. * */ std::string name_; @@ -39,7 +39,7 @@ namespace obelisk /** * @brief Construct a new Action object. * - * @param[in] id The ID of the action. + * @param[in] id The ID of the Action. */ Action(int id) : id_(id), @@ -50,7 +50,7 @@ namespace obelisk /** * @brief Construct a new Action object. * - * @param[in] name The name of the action. + * @param[in] name The name of the Action. */ Action(std::string name) : id_(0), @@ -61,8 +61,8 @@ namespace obelisk /** * @brief Construct a new Action object. * - * @param[in] id The ID of the action. - * @param[in] name The name of the action. + * @param[in] id The ID of the Action. + * @param[in] name The name of the Action. */ Action(int id, std::string name) : id_(id), @@ -71,37 +71,37 @@ namespace obelisk } /** - * @brief Create the action table in the knowledge base. + * @brief Create the Action table in the knowledge base. * * @return const char* Returns the query used to create the table. */ static const char* createTable(); /** - * @brief Get the ID of the action. + * @brief Get the ID of the Action. * * @return int& Returns the ID. */ int& getId(); /** - * @brief Set the ID of the action. + * @brief Set the ID of the Action. * - * @param[in] id Set the ID of the action. + * @param[in] id Set the ID of the Action. */ void setId(int id); /** - * @brief Get the name of the action. + * @brief Get the name of the Action. * - * @return std::string& The action name. + * @return std::string& The Action name. */ std::string& getName(); /** - * @brief Set the name of the action. + * @brief Set the name of the Action. * - * @param[in] name The name of the action. + * @param[in] name The name of the Action. */ void setName(std::string name); };