summaryrefslogtreecommitdiffstats
path: root/tools/qmldebugger/creatorplugin/qmlinspector.h
blob: 98b9cbec394b7fe0f1486d6ba14284e8088d3313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef QMLINSPECTOR_H
#define QMLINSPECTOR_H

#include <QString>

namespace QmlInspector {
    namespace Constants {
        const char * const RUN = "QmlInspector.Run";
        const char * const STOP = "QmlInspector.Stop";

        const char * const C_INSPECTOR = "QmlInspector";
    };
    
    class StartParameters
    {
    public:
        StartParameters() : port(0) {}
        ~StartParameters() {}
        
        QString address;
        quint16 port;
    };
};

#endif