Browse Source

[2861] Document possible values

Michal 'vorner' Vaner 11 years ago
parent
commit
54c8dec80a
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/bin/auth/datasrc_clients_mgr.h

+ 5 - 0
src/bin/auth/datasrc_clients_mgr.h

@@ -109,8 +109,13 @@ struct Command {
     /// \brief Argument of the command.
     ///
     /// If the command takes no argument, it should be null pointer.
+    ///
+    /// This may be a null pointer if the command takes no parameters.
     data::ConstElementPtr params;
     /// \brief A callback to be called once the command finishes.
+    ///
+    /// This may be an empty boost::function. In such case, no callback
+    /// will be called after completion.
     FinishedCallback callback;
 };