#ifndef MYHBOX_H #define MYHBOX_H #include class SopFork; ///inherited by class PagePlay and Record class MyHBox:public QHBox { public: MyHBox (QWidget * parent = 0, const char *name = 0): QHBox (parent, name) { pagetype = "play"; sopfork = NULL; } QString pagetype; SopFork *sopfork; }; #endif