xref: /haiku/src/apps/overlayimage/OverlayApp.h (revision 220d04022750f40f8bac8f01fa551211e28d04f2)
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 #ifndef OVERLAY_APP_H
15 #define OVERLAY_APP_H
16 
17 #include <Application.h>
18 #include <Catalog.h>
19 #include <Locale.h>
20 
21 
22 class OverlayApp : public BApplication {
23 public:
24 					OverlayApp();
25 };
26 
27 #endif // OVERLAY_APP_H
28