1/*
2 * Copyright 1999-2010, Be Incorporated. All Rights Reserved.
3 * This file may be used under the terms of the Be Sample Code License.
4 *
5 * OverlayImage is based on the code presented in this article:
6 * http://www.haiku-os.org/documents/dev/replishow_a_replicable_image_viewer
7 *
8 * Authors:
9 *			Seth Flexman
10 *			Hartmuth Reh
11 *			Humdinger		<humdingerb@gmail.com>
12 */
13
14#include "OverlayApp.h"
15#include "OverlayWindow.h"
16
17
18OverlayApp::OverlayApp()
19	:
20	BApplication(kAppSignature)
21{
22	OverlayWindow* theWindow = new OverlayWindow();
23	theWindow->Show();
24}
25
26
27int
28main()
29{
30	OverlayApp theApp;
31	theApp.Run();
32	return 0;
33}
34