source: branches/port5/AWT/awt_map_key.hxx

Last change on this file was 5968, checked in by westram, 16 years ago
  • new flag -w to aisc_mkpt (add include wrapper)
  • uniform style for several include wrappers
  • removed duplicated includes
  • removed useless nt_concatenate.hxx
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 998 bytes
Line 
1// =========================================================== //
2//                                                             //
3//   File      : awt_map_key.hxx                               //
4//   Purpose   :                                               //
5//                                                             //
6//   Institute of Microbiology (Technical University Munich)   //
7//   http://www.arb-home.de/                                   //
8//                                                             //
9// =========================================================== //
10
11#ifndef AWT_MAP_KEY_HXX
12#define AWT_MAP_KEY_HXX
13
14
15#define MAX_MAPPED_KEYS 20
16
17class ed_key {
18    char map[256];
19
20public:
21    ed_key(void);
22
23    char        map_key(char);
24    void        create_awars(AW_root *root);
25    friend void ed_rehash_mapping(AW_root *awr, ed_key *ek);
26};
27
28AW_window *create_key_map_window(AW_root *root);
29
30
31
32#else
33#error awt_map_key.hxx included twice
34#endif // AWT_MAP_KEY_HXX
Note: See TracBrowser for help on using the repository browser.