Fix indentation back to 4

This commit is contained in:
2022-11-08 19:18:18 +01:00
parent cc2316a497
commit 0081d219f9
11 changed files with 68 additions and 66 deletions

View File

@@ -6,39 +6,39 @@
namespace ptprnt::driver {
class IDriver {
public:
virtual ~IDriver(){};
public:
virtual ~IDriver(){};
/**
/**
* @brief Get Information struct about this driver
*
* @return driver::info
*/
virtual driver::info getInfo() = 0;
virtual driver::info getInfo() = 0;
/**
/**
* @brief opens up the device specified
*
* @return true successfully open up device
* @return false failed to open device
*/
virtual bool open() = 0;
virtual bool open() = 0;
/**
/**
* @brief close the device
*
* @return true successfully closed device
* @return false failed to close device
*/
virtual bool close() = 0;
virtual bool close() = 0;
/**
/**
* @brief Send a command to device
*
* @return true successfully sent command to device
* @return false error sending command
*/
virtual bool command() = 0;
virtual bool command() = 0;
};
} // namespace ptprnt::driver