#include <QApplication>
{
public:
QGoTabElementTestHelper(
QWidget *iParent = 0) :
}
virtual ~QGoTabElementTestHelper() {
}
}
}
{
}
protected:
virtual void PopulateMenus(
QObject *iPlugin)
{
(void)iPlugin;
}
private:
QGoTabElementTestHelper(const QGoTabElementTestHelper &);
void operator=(const QGoTabElementTestHelper &);
};
int main(
int argc,
char **argv)
{
QGoTabElementTestHelper *test = new QGoTabElementTestHelper;
test->ViewActions();
test->DockWidget();
test->GetPluginActions();
test->SetPluginActions( std::list< QAction * >() );
delete test;
return EXIT_SUCCESS;
}