Rename geometry/covering.hpp -> geometry/covering_utils.hpp.

This commit is contained in:
Yury Melnichek 2011-09-10 14:18:40 +02:00 committed by Alex Zolotarev
parent 8dbf49350d
commit 4be41d23fe
6 changed files with 5 additions and 5 deletions

View file

@ -25,7 +25,7 @@ HEADERS += \
screenbase.hpp \
cellid.hpp \
rect_intersect.hpp \
covering.hpp \
covering_utils.hpp \
packer.hpp \
pointu_to_uint64.hpp \
simplification.hpp \

View file

@ -1,4 +1,4 @@
#include "../../testing/testing.hpp"
#include "../covering.hpp"
#include "../covering_utils.hpp"
// TODO: Add covering unit tests here.

View file

@ -5,7 +5,7 @@
#include "../std/queue.hpp"
#include "../std/vector.hpp"
// TODO: Move neccessary functions to geometry/covering.hpp and delete this file.
// TODO: Move neccessary functions to geometry/covering_utils.hpp and delete this file.
template <typename BoundsT, typename CellIdT>
inline void SplitRectCell(CellIdT id,

View file

@ -2,7 +2,7 @@
#include "cell_coverer.hpp"
#include "cell_id.hpp"
#include "feature.hpp"
#include "../geometry/covering.hpp"
#include "../geometry/covering_utils.hpp"
#include "../base/base.hpp"
#include "../base/stl_add.hpp"
#include "../std/algorithm.hpp"

View file

@ -1,7 +1,7 @@
#include "../cell_coverer.hpp"
#include "../../testing/testing.hpp"
#include "../../geometry/covering.hpp"
#include "../../geometry/covering_utils.hpp"
#include "../../coding/hex.hpp"
#include "../../base/logging.hpp"