common code style

This commit is contained in:
Ralf Ramsauer 2015-10-02 16:40:12 +02:00
parent 0d92d15432
commit f504cf4e92
3 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,6 @@
class Clientmessage
{
public:
Clientmessage(std::string token,

View File

@ -1,7 +1,8 @@
#ifndef DOORMESSAGE_H
#define DOORMESSAGE_H
struct Doormessage {
struct Doormessage
{
bool isOpen = { false };
bool isUnlockButton = { false };
bool isLockButton = { false };

View File

@ -26,8 +26,8 @@ enum class LogLevel : unsigned char
* The logger class is a thread-safe class which is used for formatting and forwarding
* log messages.
*/
class Logger final {
class Logger final
{
public:
static Logger &get();