From 26c1290391eb5540d6e2c5f6eceb877e0075d087 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 23 Sep 2009 14:20:58 +0200 Subject: Client: UserListManager client --- .../Requests/UserLists/UserListListRequest.h | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/Client/Requests/UserLists/UserListListRequest.h (limited to 'src/Client/Requests/UserLists/UserListListRequest.h') diff --git a/src/Client/Requests/UserLists/UserListListRequest.h b/src/Client/Requests/UserLists/UserListListRequest.h new file mode 100644 index 0000000..805142a --- /dev/null +++ b/src/Client/Requests/UserLists/UserListListRequest.h @@ -0,0 +1,43 @@ +/* + * UserListListRequest.h + * + * Copyright (C) 2009 Matthias Schiffer + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along + * with this program. If not, see . + */ + +#ifndef MAD_CLIENT_USERLISTS_USERLISTLISTREQUEST_H_ +#define MAD_CLIENT_USERLISTS_USERLISTLISTREQUEST_H_ + +#include + +namespace Mad { +namespace Client { +namespace Requests { +namespace UserLists { + +class UserListListRequest : public Common::Requests::SimpleRequest { + public: + UserListListRequest(Common::Application *application) : SimpleRequest(application, "ListUserLists") {} +}; + +} + +} + +} + +} + +#endif /* MAD_CLIENT_USERLISTS_USERLISTLISTREQUEST_H_ */ -- cgit v1.2.3