added a default constructor to init attributes

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11403 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2005-02-17 13:43:19 +00:00
parent c8cfedef94
commit cb9c0a693e
2 changed files with 8 additions and 0 deletions
+7
View File
@@ -25,6 +25,13 @@
#define CHARS_TABLE_MAXSIZE 10000
Keymap::Keymap()
: fChars(NULL),
fCharsSize(0)
{
}
void
Keymap::GetKey( char *chars, int32 offset, char* string)
{
+1
View File
@@ -23,6 +23,7 @@
class Keymap
{
public:
Keymap();
status_t LoadCurrent();
status_t Load(entry_ref &ref);
status_t Save(entry_ref &ref);