#include "TileAssembler.h"
#include "BoundingIntervalHierarchy.h"
#include "MapDefines.h"
#include "MapTree.h"
#include "VMapDefinitions.h"
#include <boost/filesystem.hpp>
#include <iomanip>
#include <set>
#include <sstream>
Go to the source code of this file.
◆ CMP_OR_RETURN
#define CMP_OR_RETURN |
( |
|
V, |
|
|
|
S |
|
) |
| |
Value: if (strcmp((V), (S)) != 0) { \
fclose(rf); printf("cmpfail, %s!=%s\n", V, S);return(false); }
◆ READ_OR_RETURN
#define READ_OR_RETURN |
( |
|
V, |
|
|
|
S |
|
) |
| |
Value: if (fread((V), (S), 1, rf) != 1) { \
fclose(rf); printf("readfail, op = %i\n", readOperation); return(false); }
◆ READ_OR_RETURN_WITH_DELETE
#define READ_OR_RETURN_WITH_DELETE |
( |
|
V, |
|
|
|
S |
|
) |
| |
Value: if (fread((V), (S), 1, rf) != 1) { \
fclose(rf); printf("readfail, op = %i\n", readOperation); delete[] V; return(false); };