12 lines
369 B
C++
12 lines
369 B
C++
#ifndef LIGHTWEIGHT_CPU_H
|
|
#define LIGHTWEIGHT_CPU_H
|
|
#include "IHal.h"
|
|
class LightWeightCPU : public VLightWeightCPU
|
|
{
|
|
public:
|
|
LightWeightCPU() = default;
|
|
~LightWeightCPU() = default;
|
|
bool Read(char *readBuf, const unsigned int length) override;
|
|
bool Write(const char *writeBuf, const unsigned length) override;
|
|
};
|
|
#endif // !LIGHTWEIGHT_CPU_H
|