File: callback.pro

package info (click to toggle)
libqglviewer 2.8.0%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,092 kB
  • sloc: cpp: 25,884; makefile: 24; sh: 14
file content (13 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Using the Qt signal-slot mechanism to connect a QGLViewer to your scene.

# This very simple application uses the Qt signal-slot callback mechanism to link the QGLViewer and
# your Scene. The two class hence remain totally independent. The <code>drawNeeded()</code>
# QGLViewer signal is connected to the Scene <code>drawScene()</code> slot.

TEMPLATE = app
TARGET   = callback

HEADERS  = callback.h
SOURCES  = callback.cpp main.cpp

include( ../examples.pri )