You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smokeboxidentification/src/HeightCalculate.cpp

24 lines
307 B
C++

#include "HeightCalculate.h"
HeightCalculate::HeightCalculate(QObject *parent)
: QObject(parent)
{}
HeightCalculate::~HeightCalculate()
{}
void HeightCalculate::LoadBasicFile(QString path)
{
}
void HeightCalculate::LoadPointCould(QString path)
{
}
int HeightCalculate::SmokeHeight()
{
return 30;
}