winix/functions/login.h

37 lines
424 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 headerfilecmslucontentlogin
#define headerfilecmslucontentlogin
#include "functionbase.h"
namespace Fun
{
class Login : public FunctionBase
{
public:
Login();
void MakePost();
private:
void LoginUser(long user_id, bool remember_me);
};
} // namespace
#endif