Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. LoginController::LoginController(SessionTable *table) : m_table(table) {
  2. void LoginController::login() {
  3. m_table->add();
  4. }
  5. void LoginController::logout() {
  6. m_table->remove();
  7. }
  8. void LoginController::authorize() {
  9. m_table->authorize();
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement