Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > 9347541fe87a5ea3f3b8dbc50f660e8e > files > 75

libQGLViewer-devel-1.3.6-1mdk.i586.rpm

#include <qobject.h>

class QGLViewer;

// The Scene class must derive from QObject in order to allow a
// signal slot mechanism.
class Scene : public QObject
{
  Q_OBJECT        // must include this in order to use Qt signals/slots
  
public :
  Scene(const QGLViewer* const v);
  
public slots:
  void drawScene();
};