正在显示
1 个修改的文件
包含
27 行增加
和
0 行删除
src/server/services/wmts/dmptileprovider.h
0 → 100644
1 | +/************************************************************************** | |
2 | +* file: dmptileprovider.h | |
3 | + | |
4 | +* Author: wanzhongping | |
5 | +* Date: 2021-05-28 10:36:16 | |
6 | +* Email: zhongpingw@chinadci.com | |
7 | +* copyright: 广州城市信息研究所有限公司 | |
8 | +***************************************************************************/ | |
9 | + | |
10 | +#ifndef __dmptileprovider_h__ | |
11 | +#define __dmptileprovider_h__ | |
12 | + | |
13 | +#include <string> | |
14 | +#include "dmpserverresponse.h" | |
15 | + | |
16 | +namespace DmpWmts | |
17 | +{ | |
18 | + class DmpTileProvider | |
19 | + { | |
20 | + public: | |
21 | + virtual void WriteTile(const int row, const int col, const int level, const std::string& format, DmpServerResponse& respons) = 0; | |
22 | + | |
23 | + protected: | |
24 | + std::string _rootPath; | |
25 | + }; | |
26 | +} | |
27 | +#endif //__dmptileprovider_h__ | ... | ... |
请
注册
或
登录
后发表评论