9 lines
No EOL
183 B
C++
9 lines
No EOL
183 B
C++
#pragma once
|
|
#include "Notification.hpp"
|
|
|
|
class BatteryInterface {
|
|
public:
|
|
BatteryInterface() = default;
|
|
virtual int getPercentage() = 0;
|
|
virtual bool isCharging() = 0;
|
|
}; |