Commit 917249679d4a8cd2848964eea8c2a81a7e8d0bf5
1 parent
b85a3e4a
Fix whitespace
Showing
1 changed file
with
6 additions
and
2 deletions
src/ModbusConnections.h
... | ... | @@ -13,8 +13,12 @@ |
13 | 13 | #include <string> |
14 | 14 | #include <unordered_map> |
15 | 15 | |
16 | +/// | |
16 | 17 | using AdapterList = std::vector<std::shared_ptr<IModbusAdapter>>; |
17 | 18 | |
19 | +/*! | |
20 | + * \brief The ModbusConnections class | |
21 | + */ | |
18 | 22 | class ModbusConnections |
19 | 23 | { |
20 | 24 | public: |
... | ... | @@ -33,7 +37,7 @@ public: |
33 | 37 | * \param config |
34 | 38 | * \return |
35 | 39 | */ |
36 | - bool CreateConnection( const ConnectionConfig &config ); | |
40 | + bool CreateConnection( const ConnectionConfig &config ); | |
37 | 41 | |
38 | 42 | /*! |
39 | 43 | * \brief DeleteConnection |
... | ... | @@ -41,7 +45,7 @@ public: |
41 | 45 | * \param endpoint |
42 | 46 | * \return |
43 | 47 | */ |
44 | - bool DeleteConnection( const ConnectionPort portName, const std::string &endpoint = std::string() ); | |
48 | + bool DeleteConnection( const ConnectionPort portName, const std::string &endpoint = std::string() ); | |
45 | 49 | |
46 | 50 | /*! |
47 | 51 | * \brief ConnectionCount | ... | ... |