Rename Internal-, Remote- and LegacyConnection to -Peer
[quassel.git] / src / common / protocols / legacy / legacypeer.h
similarity index 91%
rename from src/common/protocols/legacy/legacyconnection.h
rename to src/common/protocols/legacy/legacypeer.h
index 04ac1c3..a3aa178 100644 (file)
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef LEGACYCONNECTION_H
-#define LEGACYCONNECTION_H
+#ifndef LEGACYPEER_H
+#define LEGACYPEER_H
 
 #include <QDataStream>
 
-#include "../../remoteconnection.h"
+#include "../../remotepeer.h"
 
 class QDataStream;
 
-class LegacyConnection : public RemoteConnection
+class LegacyPeer : public RemotePeer
 {
     Q_OBJECT
 
@@ -41,8 +41,8 @@ public:
         HeartBeatReply
     };
 
-    LegacyConnection(QTcpSocket *socket, QObject *parent = 0);
-    ~LegacyConnection() {}
+    LegacyPeer(QTcpSocket *socket, QObject *parent = 0);
+    ~LegacyPeer() {}
 
     void setSignalProxy(SignalProxy *proxy);