All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ResourceUrl.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Streaming.h"
6 #include <string>
7 
8 namespace Eegeo
9 {
10  namespace Streaming
11  {
12  extern const std::string CoverageTreePrefix;
13 
14  std::string FromMortonKey(const MortonKey &key,
15  const std::string &serverBaseUrl,
16  const std::string &storePrefix,
17  const std::string &featureRelativePath,
18  const std::string &resourceName,
19  const std::string &resourceExtension);
20 
21  std::string CoverageTreeUrl(
22  const std::string &serverBaseUrl,
23  const std::string &storePrefix,
24  const std::string &resourceName
25  );
26  }
27 }