summaryrefslogtreecommitdiffstats
path: root/src/Common/Requests/GroupUserListRequest.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-06-24 00:04:28 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-06-24 00:04:28 +0200
commitdff7c00a0c2c3fcb64efd611d70398d711ad861b (patch)
tree93c1556c15987b37e8d2ba3421cb246006a02eac /src/Common/Requests/GroupUserListRequest.cpp
parent02b9e16833acbdaa820bd3b8b64d652a41a8ff58 (diff)
downloadmad-dff7c00a0c2c3fcb64efd611d70398d711ad861b.tar
mad-dff7c00a0c2c3fcb64efd611d70398d711ad861b.zip
NetworkUserBackend implementiert
Diffstat (limited to 'src/Common/Requests/GroupUserListRequest.cpp')
-rw-r--r--src/Common/Requests/GroupUserListRequest.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/Common/Requests/GroupUserListRequest.cpp b/src/Common/Requests/GroupUserListRequest.cpp
deleted file mode 100644
index 87ab1b5..0000000
--- a/src/Common/Requests/GroupUserListRequest.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * GroupUserListRequest.cpp
- *
- * 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/>.
- */
-
-#include "GroupUserListRequest.h"
-
-namespace Mad {
-namespace Common {
-namespace Requests {
-
-void GroupUserListRequest::sendRequest() {
- Common::XmlPacket packet;
- packet.setType("ListGroupUsers");
- packet.set("gid", gid);
-
- sendPacket(packet);
-}
-
-}
-}
-}