1 #pragma once
2 
3 class express_table_row : public CWnd
4 {
5 public:
6     express_table_row();
7     ~express_table_row();
8     CWnd *GetNextTabStopChild(CWnd *child, WPARAM keyvalue, int row_offset = 1);
9     void AssignFocus(CWnd* child);
10 
11 private:
12     INT GetFocusCol(CWnd* focus_owner);
13 };
14 
15