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