mirror of
https://gitlab.com/manzerbredes/uciadapter.git
synced 2025-04-05 17:46:27 +02:00
Improve source code
This commit is contained in:
parent
d98879e559
commit
8ffceb67ba
2 changed files with 3 additions and 2 deletions
|
@ -16,6 +16,7 @@ public:
|
|||
virtual std::string ReadLine() = 0;
|
||||
/// @brief Write to engine stdin
|
||||
virtual void Write(std::string) = 0;
|
||||
virtual ~Process(){};
|
||||
};
|
||||
|
||||
struct FailedToStartEngine : public std::exception {
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#include <vector>
|
||||
|
||||
#define IS_OPT_PARAM(str) \
|
||||
((str) == "name" || (str) == "type" | (str) == "default" || \
|
||||
(str) == "min" || (str) == "max" || (str) == "var")
|
||||
(((str) == "name") || ((str) == "type") || ((str) == "default") || \
|
||||
((str) == "min") || ((str) == "max") || ((str) == "var"))
|
||||
|
||||
namespace uciadapter {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue