10 lines
142 B
C
10 lines
142 B
C
|
#pragma once
|
||
|
#include "stdafx.h"
|
||
|
|
||
|
enum class StepType;
|
||
|
|
||
|
class IDebugger
|
||
|
{
|
||
|
public:
|
||
|
virtual void Step(int32_t stepCount, StepType type) = 0;
|
||
|
};
|