removed headers from *.h and *.cpp
[toast/confclerk.git] / src / gui / nowtabcontainer.h
1
2 #ifndef NOWTABCONTAINER_H_
3 #define NOWTABCONTAINER_H_
4
5 #include "tabcontainer.h"
6
7 class NowTabContainer: public TabContainer
8 {
9     Q_OBJECT
10 public:
11     NowTabContainer( QWidget *aParent );
12     virtual ~NowTabContainer() { }
13
14 protected:
15     virtual void loadEvents( const QDate &aDate, const int aConferenceId );
16
17 private slots:
18     void timerUpdateTreeView();
19 };
20
21 #endif /* NOWTABCONTAINER_H_ */