11 lines
380 B
C++
11 lines
380 B
C++
#ifndef PERIPHERA_MANAGER_CUSTOMIZATION_H
|
|
#define PERIPHERA_MANAGER_CUSTOMIZATION_H
|
|
#include "PeripheralManager.h"
|
|
class PeripheralManagerCustomization : public PeripheralManager
|
|
{
|
|
public:
|
|
PeripheralManagerCustomization() = default;
|
|
~PeripheralManagerCustomization() = default;
|
|
RETURN_CODE Init(void) override;
|
|
};
|
|
#endif // !PERIPHERA_MANAGER_CUSTOMIZATION_H
|