14 lines
322 B
C++
14 lines
322 B
C++
#ifndef IYPARKINGSPACEGUIDESTATUS_H
|
|
#define IYPARKINGSPACEGUIDESTATUS_H
|
|
|
|
#include "IVisionApplicationStatus.h"
|
|
#include "IVrConfig.h"
|
|
|
|
class IYParkingSpaceGuideStatus : public IVisionApplicationStatus<DetectionResult>
|
|
{
|
|
public:
|
|
virtual ~IYParkingSpaceGuideStatus() = default;
|
|
};
|
|
|
|
#endif // IYPARKINGSPACEGUIDESTATUS_H
|