11 lines
190 B
C
11 lines
190 B
C
|
#ifndef __NAVIGATIONBAR_H__
|
||
|
#define __NAVIGATIONBAR_H__
|
||
|
|
||
|
#include <Wt/WTemplate.h>
|
||
|
|
||
|
class NavigationBar: public Wt::WTemplate {
|
||
|
public:
|
||
|
NavigationBar();
|
||
|
};
|
||
|
|
||
|
#endif // __NAVIGATIONBAR_H__
|