haiku/src/apps/charactermap/CharacterMap.h
Jonas Sundström 11c7ff531a Removing most About windows and menu items as discussed here
http://www.freelists.org/post/haiku-commits/r40968-in-haikutrunksrcapps-activitymonitor-bootmanager-charactermap-codycam-deskbar,3
Leaving them for now in replicants, and in Terminal, according to (my interpretation of) the instructions here
http://dev.haiku-os.org/browser/haiku/trunk/src/apps/terminal/README.GPL_to_OBOS#L70
Some sporadic cleanup.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41108 a95241bf-73f2-0310-859d-f6bbb57e9c96
2011-03-26 02:18:52 +00:00

32 lines
591 B
C++

/*
* Copyright 2009, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef CHARACTER_MAP_H
#define CHARACTER_MAP_H
#include <Application.h>
class BMessage;
class CharacterWindow;
class CharacterMap : public BApplication {
public:
CharacterMap();
virtual ~CharacterMap();
virtual void ReadyToRun();
virtual void RefsReceived(BMessage* message);
virtual void MessageReceived(BMessage* message);
private:
CharacterWindow* fWindow;
};
extern const char* kSignature;
#endif // CHARACTER_MAP_H