Skip to content

Commit

Permalink
Merge pull request audioscience#244 from vronchetti/vfr/clang_formatting
Browse files Browse the repository at this point in the history
avdecc - make Doxygen comments more clang-format compatible
  • Loading branch information
andrew-elder committed Apr 26, 2016
2 parents beb6fea + 5bdb8fa commit c909fce
Show file tree
Hide file tree
Showing 90 changed files with 2,486 additions and 2,495 deletions.
14 changes: 7 additions & 7 deletions controller/app/cmdline/src/cli_argument.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@ class cli_argument
virtual bool set_value(std::string value_str) = 0;
virtual void get_completion_options(std::set<std::string> &options) = 0;

/**
* The get_ functions return the first matching value.
*/
///
/// The get_ functions return the first matching value.
///
virtual int get_value_int() const;
virtual uint32_t get_value_uint() const;
virtual std::string get_value_str() const;

/**
* The get_all_ functions return all matching values where an argument has
* matched more than once
*/
///
/// The get_all_ functions return all matching values where an argument has
/// matched more than once
///
virtual size_t get_all_value_count() const = 0;
virtual std::vector<int> get_all_value_int() const;
virtual std::vector<uint32_t> get_all_value_uint() const;
Expand Down
Loading

0 comments on commit c909fce

Please sign in to comment.