CShellWindow: apply clearer enum format declaration

This commit is contained in:
2014-10-04 22:28:13 +02:00
parent c70c234394
commit 305511a395

View File

@@ -36,7 +36,11 @@
class CShellWindow
{
public:
enum shellwindow_modes { VERBOSE = 1, ACKNOWLEDGE = 2 };
enum shellwindow_modes
{
VERBOSE = 1,
ACKNOWLEDGE = 2
};
CShellWindow(const std::string &cmd, const int mode = 0, int *res = NULL);
~CShellWindow();
private: