- clang format + naming improved

This commit is contained in:
2026-09-03 10:03:42 +03:00
parent 249e614def
commit e166bae1ea
204 changed files with 20621 additions and 21019 deletions
+6 -6
View File
@@ -6,14 +6,14 @@
class Agent
{
protected:
void* mContext;
void* mContext;
public:
Agent();
~Agent();
void write(const std::string& command);
bool waitForData(int milliseconds);
std::string read();
Agent();
~Agent();
void write(const std::string& command);
bool waitForData(int milliseconds);
std::string read();
};
#endif