R*tree implementation based on boost::variant

[SVN r70531]
This commit is contained in:
Adam Wulkiewicz
2011-03-24 23:52:27 +00:00
commit c5e823bbb5
32 changed files with 3190 additions and 0 deletions

16
tests/main.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <tests/translators.hpp>
#include <tests/rtree_native.hpp>
#include <tests/rtree_filters.hpp>
int main()
{
tests_translators_hpp();
tests_rtree_native_hpp();
tests_rtree_filters_hpp();
#ifdef _MSC_VER
std::cin.get();
#endif
return 0;
}