mirror of
https://gitlab.com/manzerbredes/uciadapter.git
synced 2025-04-06 10:06:26 +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;
|
virtual std::string ReadLine() = 0;
|
||||||
/// @brief Write to engine stdin
|
/// @brief Write to engine stdin
|
||||||
virtual void Write(std::string) = 0;
|
virtual void Write(std::string) = 0;
|
||||||
|
virtual ~Process(){};
|
||||||
};
|
};
|
||||||
|
|
||||||
struct FailedToStartEngine : public std::exception {
|
struct FailedToStartEngine : public std::exception {
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#define IS_OPT_PARAM(str) \
|
#define IS_OPT_PARAM(str) \
|
||||||
((str) == "name" || (str) == "type" | (str) == "default" || \
|
(((str) == "name") || ((str) == "type") || ((str) == "default") || \
|
||||||
(str) == "min" || (str) == "max" || (str) == "var")
|
((str) == "min") || ((str) == "max") || ((str) == "var"))
|
||||||
|
|
||||||
namespace uciadapter {
|
namespace uciadapter {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue