summaryrefslogtreecommitdiff
path: root/src/user.hpp
blob: 9f35a0ddd73847fee2ef270e184c2e1079262372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef USER_HPP
#define USER_HPP

#include "master.hpp"

namespace apps {

class user : public master {
	public:
		user( strusCms &cms );
		bool check_login( std::string user, std::string password );

	private:
		void login( );
		void logout( );	
};

}

#endif