Skip to content

Commit d09aa1d

Browse files
committed
cmdlinelogger.h: added basic documentation
1 parent b44ff6e commit d09aa1d

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

cli/cmdlinelogger.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@ class CmdLineLogger
2626
public:
2727
virtual ~CmdLineLogger() = default;
2828

29+
/** print a regular message */
2930
virtual void printMessage(const std::string &message) = 0;
31+
/** print an error message */
3032
virtual void printError(const std::string &message) = 0;
33+
/** print to the output */
3134
virtual void printRaw(const std::string &message) = 0;
3235
};
3336

0 commit comments

Comments
 (0)