summaryrefslogtreecommitdiffstats
path: root/qtservice/src/qtunixsocket.h
blob: 0e13a39cb73bb7f3a51981cace83ba63b0fb5fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
// SPDX-License-Identifier: BSD-3-Clause

#ifndef QTUNIXSOCKET_H
#define QTUNIXSOCKET_H

#include <QTcpSocket>

class QtUnixSocket : public QTcpSocket
{
    Q_OBJECT
public:
    QtUnixSocket(QObject *parent = 0);

    bool connectTo(const QString &path);
};

#endif