From: Mateusz Malicki Date: Mon, 6 Jul 2015 09:41:16 +0000 (+0200) Subject: Fix doxygen comment X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d03f8b33c430d889d0b3dcdb2af8363e006985a;p=platform%2Fcore%2Fsecurity%2Fvasum.git Fix doxygen comment [Bug] Can't compile with clang 3.6 [Cause] Bad format of doxygen comment (command-line-interface.hpp) [Solution] N/A [Verification] Compile with clang. Change-Id: If8a394d67ac37f402802a23bdf990f1ea70306d2 --- diff --git a/cli/command-line-interface.hpp b/cli/command-line-interface.hpp index 29282d9..fe47929 100644 --- a/cli/command-line-interface.hpp +++ b/cli/command-line-interface.hpp @@ -66,9 +66,11 @@ public: * Construct command * * @param executorCallback Callback function that will do the job - * @param usage Description of use - * @param usageInfo Description of the command + * @param name Command name + * @param description Command Description + * @param availability Command availability (bit field) * @param argsSpec Description of arguments + * @remark Possible bits for availability: MODE_COMMAND_LINE, MODE_INTERACTIVE */ CommandLineInterface(const ExecutorCallback& executorCallback, const std::string& name, @@ -107,8 +109,6 @@ public: /** * Get the command description - * - * @param out Output stream */ const std::string& getDescription() const; @@ -131,8 +131,6 @@ public: * * It calls the callback passed in constructor * - * @param pos Points to element in argv where command was recognized (i.e. command name) - * @param argc Number of elements in argv * @param argv Command line arguments */ void execute(const Args& argv);