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.

17 lines
242 B
C++

#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