f0d95841ee
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27811 a95241bf-73f2-0310-859d-f6bbb57e9c96
21 lines
393 B
C++
21 lines
393 B
C++
/*
|
|
* Copyright 2000-2008, François Revol, <revol@free.fr>. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _THEMESAPP_H_
|
|
#define _THEMESAPP_H_
|
|
|
|
#include <Application.h>
|
|
|
|
class ThemesApp : public BApplication {
|
|
public:
|
|
ThemesApp();
|
|
virtual ~ThemesApp();
|
|
void ReadyToRun();
|
|
void MessageReceived(BMessage *message);
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // _THEMESAPP_H_
|