tahoma2d/toonz/sources/toonzfarm/tfarmclient/tabPage.h

21 lines
297 B
C
Raw Normal View History

2016-03-19 06:57:51 +13:00
#ifndef TABPAGE_H
#define TABPAGE_H
#include "tw/tw.h"
class TabPage : public TWidget
{
public:
TabPage(TWidget *parent, const string &name) : TWidget(parent, name) {}
virtual ~TabPage() {}
virtual void onActivate() {}
virtual void onDeactivate() {}
virtual void update() {}
};
#endif