#pragma once
#include "common/profiler.h"
namespace lbug {
namespace main {
class ClientContext;
}
namespace processor {
struct LBUG_API ExecutionContext {
uint64_t queryID;
common::Profiler* profiler;
main::ClientContext* clientContext;
ExecutionContext(common::Profiler* profiler, main::ClientContext* clientContext,
uint64_t queryID)
: queryID{queryID}, profiler{profiler}, clientContext{clientContext} {}
};
} }