repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
docs/ikteam: Delete most files.
[haiku.git]
/
src
/
preferences
/
appearance
/
APRMain.h
blob
951f91f4cda9fe50aa9886b6106635e4bce4d933
1
/*
2
* Copyright 2002-2006, Haiku. All rights reserved.
3
* Distributed under the terms of the MIT License.
4
*
5
* Authors:
6
* DarkWyrm (darkwyrm@earthlink.net)
7
*/
8
#ifndef APR_MAIN_H
9
#define APR_MAIN_H
10
11
#include <Application.h>
12
#include <Catalog.h>
13
14
class
APRWindow
;
15
16
class
APRApplication
:
public
BApplication
17
{
18
public
:
19
APRApplication
(
void
);
20
21
private
:
22
23
APRWindow
*
fWindow
;
24
};
25
26
#endif