Files
lms/ui/settings/SettingsUsers.hpp
T
2014-07-23 23:28:16 +02:00

31 lines
519 B
C++

#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