#include <Common/Window.h>
#include <Common/Tuples.h>
#include <Utils/UtilityFunctions.hpp>
#include <assert.h>
#include <Utils/ConfigMap.hpp>
#include <WaterMarker/WMTable.h>
Go to the source code of this file.
|
|
#define | OP_INFO printf |
| |
|
#define | OP_ERROR printf |
| |
|
#define | OP_WARNNING INTELLI_WARNING |
| |
|
#define | newAbstractOperator std::make_shared<OoOJoin::AbstractOperator> |
| | (Macro) To creat a new AbstractOperator under shared pointer.
|
| |
| #define | timeTrackingStart(v) ; tsType v;v=UtilityFunctions::timeLastUs(timeBaseStruct); |
| | (Macro) start a time tracking and record it at variable v, v is not defined yet More...
|
| |
| #define | timeTrackingStartNoClaim(v) ; v=UtilityFunctions::timeLastUs(timeBaseStruct); |
| | (Macro) start a time tracking and record it at variable v, v is previously defined More...
|
| |
| #define | timeTrackingEnd(v) (UtilityFunctions::timeLastUs(timeBaseStruct)-v) |
| | (Macro) end a time tracking of variable v and return More...
|
| |