#include <PMCallbacks.h>
Public Types | |
enum | Action { PROCEED, RETRY, SKIP, CANCEL } |
Public Member Functions | |
CBSuggest (const Action &action_r=PROCEED) | |
CBSuggest (const std::string &str_r) | |
operator const Action & () const | |
Private Attributes | |
Action | action |
Friends | |
std::ostream & | operator<< (std::ostream &str, const CBSuggest &obj) |
std::ostream & | operator<< (std::ostream &str, const Action &obj) |
CBSuggest
is nothing more than an enum value of CBSuggest::Action
. The only purpose for wraping it into a class is the construction from a std::string.
Use PROCEED
if you've got no special suggestion.
|
Action values |
|
Constructor. Defaults to |
|
Constructor. You may use any unique abbreviation of an enum value in upper, lower or mixed case. Empty or unknown values default to |
|
Conversion to Action value. |
|
|
|
|
|
Action value |