File indexing completed on 2024-05-05 05:51:31

0001 /**
0002  * Description: Common interface for GDB and DAP backends
0003  *
0004  *  SPDX-FileCopyrightText: 2022 Héctor Mesa Jiménez <wmj.py@gmx.com>
0005  *
0006  *  SPDX-License-Identifier: LGPL-2.0-or-later
0007  */
0008 
0009 #include "backendinterface.h"
0010 
0011 BackendInterface::BackendInterface(QObject *parent)
0012     : QObject(parent)
0013 {
0014 }
0015 
0016 #include "moc_backendinterface.cpp"