WIP. Added the user table view

This commit is contained in:
emeric
2014-07-23 23:28:16 +02:00
parent d4c0806f7a
commit f378a26a78
8 changed files with 167 additions and 4 deletions
+30
View File
@@ -0,0 +1,30 @@
#ifndef UI_SETTINGS_USERS_HPP
#define UI_SETTINGS_USERS_HPP
#include <Wt/WContainerWidget>
#include <Wt/WTable>
#include "common/SessionData.hpp"
namespace UserInterface {
namespace Settings {
class Users : public Wt::WContainerWidget
{
public:
Users(SessionData& sessioNData, Wt::WContainerWidget *parent = 0);
private:
void handleDelUser(Wt::WString loginNameIdentity, std::string id);
SessionData& _sessionData;
Wt::WTable* _table;
};
} // namespace UserInterface
} // namespace Settings
#endif