mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-01 05:05:57 -08:00
32 lines
683 B
C++
32 lines
683 B
C++
#ifndef GUIEEXCHANGESCONTROL_H
|
|
#define GUIEEXCHANGESCONTROL_H
|
|
|
|
#include <QQuickItem>
|
|
|
|
#include "../../CSCPublicAPI/jsonactiveexchangesparser.h"
|
|
|
|
class GUIExchangesListView;
|
|
|
|
class GUIExchangesControl : public QQuickItem
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GUIExchangesControl( QQuickItem* a_pParent = 0 );
|
|
virtual ~GUIExchangesControl();
|
|
|
|
Q_INVOKABLE void InitializeExchangesView( GUIExchangesListView* a_pView );
|
|
GUIExchangesListView* GetExchangesView() const { return m_pExchangesView; }
|
|
|
|
public slots:
|
|
void slotPopulateListView( JsonActiveExchangesParser* a_pActiveExchanges );
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
private:
|
|
GUIExchangesListView* m_pExchangesView;
|
|
};
|
|
|
|
#endif // GUIEEXCHANGESCONTROL_H
|