CShellWindow: apply clearer enum format declaration

Origin commit data
------------------
Commit: 305511a395
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-10-04 (Sat, 04 Oct 2014)
This commit is contained in:
2014-10-04 22:28:13 +02:00
parent 38ee28b519
commit 8f0b51bc58

View File

@@ -36,7 +36,11 @@
class CShellWindow class CShellWindow
{ {
public: 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(const std::string &cmd, const int mode = 0, int *res = NULL);
~CShellWindow(); ~CShellWindow();
private: private: