diff options
author | corvid <corvid@lavabit.com> | 2009-06-05 01:22:16 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-06-05 01:22:16 +0000 |
commit | cbe9d121c63d49e559f678fa5cd1a3b87965bdbb (patch) | |
tree | e89a8f8c9274a1143bd919eada026e3b6712d7ff | |
parent | d75d8d25b56183f5e65b03c3d20533cc4c7b3782 (diff) |
add private to show API vs internal
-rw-r--r-- | src/keys.hh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/keys.hh b/src/keys.hh index 88b7f89d..b44f02ba 100644 --- a/src/keys.hh +++ b/src/keys.hh @@ -39,18 +39,19 @@ typedef enum { } KeysCommand_t; class Keys { -public: - static void init(); - static void free(); +private: static int nodeByKeyCmp(const void *node, const void *key); - static KeysCommand_t getKeyCmd(void); static void delKeyCmd(int key, int mod); static KeysCommand_t getCmdCode(const char *symbolName); static int getKeyCode(char *keyName); static int getModifier(char *modifierName); - static int getShortcut(KeysCommand_t cmd); static void parseKey(char *key, char *symbol); +public: + static void init(); + static void free(); static void parse(FILE *fp); + static KeysCommand_t getKeyCmd(void); + static int getShortcut(KeysCommand_t cmd); }; |