Project

General

Profile

How to use Signals? // How to communicate between Objects? » WNavigation.h

Quirin Schwanse, 11/07/2018 10:21 PM

 
#pragma once
#ifndef _WNAVIGATION_H
#define _WNAVIGATION_H

#include "TLayout.h"
#include <Wt/WContainerWidget.h>
#include <Wt/WPushButton.h>

using Wt::WContainerWidget;
using Wt::WPushButton;
using std::make_unique;

class TLayout;

class WNavigation : public WContainerWidget
{

public:
WNavigation();
~WNavigation();

private:
WPushButton* b_NEWS;
WPushButton* b_DEV;
WPushButton* b_PROJ;
WPushButton* b_MEDIA;
WPushButton* b_SHOP;
WPushButton* b_CONTACT;
};

#endif
(3-3/4)