All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CoverageTreeMinMaxLevel.h
1 // Copyright (c) 2015 eeGeo. All rights reserved.
2 
3 
4 #pragma once
5 #include "MortonKey.h"
6 
7 
8 namespace Eegeo
9 {
10  namespace Streaming
11  {
12  namespace CoverageTrees
13  {
15  {
16  int min;
17  int max;
18  CoverageTreeMinMaxLevel(int min, int max): min(min), max(max){}
19  };
20  }
21  }
22 }