Shofel2_T124_python/venv/lib/python3.10/site-packages/qiling/debugger/debugger.py

19 lines
321 B
Python

#!/usr/bin/env python3
#
# Cross Platform and Multi Architecture Advanced Binary Emulation Framework
#
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from qiling import Qiling
class QlDebugger:
def __init__(self, ql: 'Qiling'):
self.ql = ql
def run(self):
raise NotImplementedError