#include "TileAssembler.h"
#include "BoundingIntervalHierarchy.h"
#include "Duration.h"
#include "IteratorPair.h"
#include "MapTree.h"
#include "Memory.h"
#include "StringConvert.h"
#include "StringFormat.h"
#include "ThreadPool.h"
#include "VMapDefinitions.h"
#include <boost/filesystem/directory.hpp>
#include <boost/filesystem/operations.hpp>
#include <mutex>
#include <set>
Go to the source code of this file.
|
| static auto | VMAP::OpenFile (boost::filesystem::path const &p, char const *mode) |
| |
◆ CMP_OR_RETURN
| #define CMP_OR_RETURN |
( |
|
V, |
|
|
|
S |
|
) |
| |
Value: if (strcmp((V), (S)) != 0) do { \
printf("%s cmpfail, %s!=%s\n", __FUNCTION__, V, S);return false; } while(false)
Definition at line 472 of file TileAssembler.cpp.
◆ READ_OR_RETURN
| #define READ_OR_RETURN |
( |
|
V, |
|
|
|
S |
|
) |
| |
Value: if (fread((V), (S), 1, rf) != 1) do { \
printf("%s readfail, op = %s\n", __FUNCTION__, #V); return false; } while(false)
Definition at line 470 of file TileAssembler.cpp.