classe step
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#ifndef STEP_H
|
||||
#define STEP_H
|
||||
#include <QString>
|
||||
#include <QTextStream>
|
||||
class Step
|
||||
{
|
||||
|
||||
private:
|
||||
QString title;
|
||||
float latitude;
|
||||
float longitude;
|
||||
QString text;
|
||||
int response;
|
||||
|
||||
public:
|
||||
Step();
|
||||
Step(QTextStream &in);
|
||||
void setLatitude(int degree,float minute,QChar NS);
|
||||
void setLongitude(int degree,float minute,QChar EW);
|
||||
};
|
||||
|
||||
#endif // STEP_H
|
||||
Reference in New Issue
Block a user