
Apply a few changes that were requested in the PR during the review. # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp
15 lines
261 B
C++
15 lines
261 B
C++
#pragma once
|
|
|
|
#include "components/ble/BleController.h"
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Screens {
|
|
class BleIcon {
|
|
public:
|
|
static const char* GetIcon(bool isRadioEnabled, bool isConnected);
|
|
};
|
|
}
|
|
}
|
|
}
|