TWR
T windows api WRapper
 All Classes Functions
TwrTab.h
1 #ifndef TWRTAB_H
2 #define TWRTAB_H
3 
4 #include "TwrWnd.h"
5 
6 class TwrTab : public TwrWnd {
7 public:
8  TwrTab();
9  HWND create();
10  HWND create(HWND parent);
11  void add(TCHAR *title);
12  int getSelectedIndex(void);
13  void select(int index);
14 };
15 
16 #endif