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.
|
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include <QVector>
|
|
#include <QString>
|
|
|
|
extern QVector<QString> g_DEMCollection; //地形数据集
|
|
extern float g_MaxVoyage; //最大航程(m)
|
|
|
|
class Global
|
|
{
|
|
public:
|
|
Global();
|
|
};
|
|
|
|
#endif // GLOBAL_H
|