提交 2051644a00298cc6bd69612bdd42d5560e61edd5

作者 LJH 李佳桓
1 个父辈 8e3f7761

add

  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__
... ...
注册登录 后发表评论