1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00
Beef/IDEHelper/DbgEvalPool.h

31 lines
458 B
C
Raw Normal View History

2019-08-23 11:56:54 -07:00
#pragma once
#include "Debugger.h"
NS_BF_DBG_BEGIN
class DbgEvalPool
{
public:
class Entry
{
public:
std::string mExpr;
int mCallStackIdx;
//int mCursorPos;
int mAllowAssignment;
int mAllowCall;
int mExpressionFlags;
};
public:
std::vector<Entry*> mEntryList;
public:
~DbgEvalPool();
Entry* Add(const std::string& expr, int callStackIdx, int cursorPos, bool allowAssignment, bool allowCalls, int expressionFlags);
};
NS_BF_DBG_END