openappsec/components/utils/keywords/sentinel_runtime_state.h
2023-05-11 18:54:44 +00:00

14 lines
318 B
C++

#ifndef ___SENTINEL_RUNTIME_STATE_H__
#define ___SENTINEL_RUNTIME_STATE_H__
#include "single_keyword.h"
class SentinelRuntimeState : public I_KeywordRuntimeState
{
public:
uint getOffset(const std::string &) const override;
uint getVariable(uint) const override;
};
#endif // ___SENTINEL_RUNTIME_STATE_H__