got rid of 'src' folders in each sub-project

This commit is contained in:
bunnei 2014-04-08 19:25:03 -04:00
parent 03c245345e
commit 63e46abdb8
148 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#include <QDockWidget>
#include "ui_callstack.h"
#include "platform.h"
class QStandardItemModel;
class GCallstackView : public QDockWidget
{
Q_OBJECT
public:
GCallstackView(QWidget* parent = 0);
public slots:
void OnCPUStepped();
private:
Ui::CallStack ui;
QStandardItemModel* callstack_model;
};