hunting/hal/src/HalCpp.h
xiaojiazhu 080c1f6c64 1.Delete hal.
2.Add new hal.
2023-08-17 08:23:22 -07:00

10 lines
170 B
C++

#ifndef HALCPP_H
#define HALCPP_H
#include "IHalCpp.h"
class HalCpp : public IHalCpp
{
public:
HalCpp() = default;
virtual ~HalCpp() = default;
};
#endif