/** \file ExtraSocket.h \brief Define the socket for ultracopier \author alpha_one_x86 \version 0.3 \date 2010 \licence GPL3, see the file COPYING */ #ifndef EXTRASOCKET_H #define EXTRASOCKET_H #include #ifdef Q_OS_UNIX #include #include #else #include #endif /** \brief class to have general socket options */ class ExtraSocket { public: /** \brief class to return always the same socket resolution */ static QString pathSocket(const QString &name); }; #endif // EXTRASOCKET_H