winix/functions/login.h

37 lines
434 B
C++
Executable File

/*
* This file is a part of Winix
* and is not publicly distributed
*
* Copyright (c) 2010, Tomasz Sowa
* All rights reserved.
*
*/
#ifndef headerfile_winix_functions_login
#define headerfile_winix_functions_login
#include "functionbase.h"
namespace Fun
{
class Login : public FunctionBase
{
public:
Login();
void MakePost();
private:
void LoginUser(long user_id, bool remember_me);
};
} // namespace
#endif