Project

General

Profile

RE: Can new created thread emit signals to Wt thread usin... » GUIApplication.h

ruliang ge, 05/07/2010 06:46 AM

 
#ifndef __GUIAPPLICATION_H__
#define __GUIAPPLICATION_H__

#include <Wt/WApplication>
#include <Wt/WText>

using namespace Wt;

class GUIApplication : public WApplication
{
public:
GUIApplication(const WEnvironment& env);
private:
WText *counterTest_;
WApplication *app_;
boost::signals::connection eventConnection_;
void showCounter(int arg_number);
};

#endif
(1-1/4)