added a rdef file git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8713 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
468 B
C++
26 lines
468 B
C++
/*
|
|
** Copyright 2004, the Haiku project. All rights reserved.
|
|
** Distributed under the terms of the Haiku License.
|
|
**
|
|
** Author : [email protected], Jérôme Duval
|
|
*/
|
|
|
|
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
#include <Application.h>
|
|
|
|
class KeyboardApplication : public BApplication
|
|
{
|
|
public:
|
|
KeyboardApplication();
|
|
|
|
void MessageReceived(BMessage *message);
|
|
|
|
void AboutRequested(void);
|
|
private:
|
|
static const char kKeyboardApplicationSig[];
|
|
};
|
|
|
|
#endif
|