summaryrefslogtreecommitdiffstats
path: root/src/Net/Connection.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-06-11 04:27:18 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-06-11 04:27:18 +0200
commit4b6acb098be9aa41e4a4bedc9aa3655822049635 (patch)
treea3f9546f2f1c366ba6ee126eece3dc481a897637 /src/Net/Connection.h
parent561150ea6623be4ea32ff225d26e771274fcfd63 (diff)
downloadmad-4b6acb098be9aa41e4a4bedc9aa3655822049635.tar
mad-4b6acb098be9aa41e4a4bedc9aa3655822049635.zip
Ein paar weitere Test-Dateien erstellt
Diffstat (limited to 'src/Net/Connection.h')
-rw-r--r--src/Net/Connection.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/Net/Connection.h b/src/Net/Connection.h
new file mode 100644
index 0000000..a40407c
--- /dev/null
+++ b/src/Net/Connection.h
@@ -0,0 +1,35 @@
+/*
+ * Connection.h
+ *
+ * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MAD_NET_CONNECTION_H_
+#define MAD_NET_CONNECTION_H_
+
+namespace Mad {
+namespace Net {
+
+class Connection {
+ public:
+ Connection();
+ virtual ~Connection();
+};
+
+}
+}
+
+#endif /*CONNECTION_H_*/