1/*
2 * Copyright 2008, François Revol, <revol@free.fr>. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _LOGINWINDOW_H_
6#define _LOGINWINDOW_H_
7
8#include <Window.h>
9
10class LoginWindow : public BWindow {
11public:
12	LoginWindow(BRect frame);
13virtual	~LoginWindow();
14};
15
16#endif	// _LOGINWINDOW_H_
17