Files
haiku-beta6/src/prefs/keyboard/Keyboard.h
T
Jérôme Duval 76dd4cf399 Revised the code, to be cleaner
added a rdef file


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8713 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-08-29 16:28:21 +00:00

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