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.
32 lines
463 B
C++
32 lines
463 B
C++
#ifndef SYMBOLRESOURCES_H
|
|
#define SYMBOLRESOURCES_H
|
|
|
|
// 用于管理地图图层点、线、面符号
|
|
|
|
#include "Symbol/UGMarkerSymbolLib.h"
|
|
#include "Workspace/UGResources.h"
|
|
using namespace UGC;
|
|
|
|
class SymbolResources
|
|
{
|
|
public:
|
|
SymbolResources();
|
|
|
|
public:
|
|
void setResources(UGResources* resources);
|
|
|
|
void reLoading(); //重新载入符号库
|
|
|
|
void addSymbol();
|
|
|
|
private:
|
|
|
|
|
|
private:
|
|
UGResources* resources;
|
|
|
|
|
|
};
|
|
|
|
#endif // SYMBOLRESOURCES_H
|