aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/qwt5
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-01-28 17:42:32 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-01-28 17:42:32 +0000
commit1368121c3c2382db9598cd5c264f428fc7ddb425 (patch)
tree9430c9f8b67ca62cfdbbbddd479b8d60f4ceee3f /x11-toolkits/qwt5
parentc1c58b0962d5d607a60299c50dcf1f350aaa7dcf (diff)
downloadports-1368121c3c2382db9598cd5c264f428fc7ddb425.tar.gz
ports-1368121c3c2382db9598cd5c264f428fc7ddb425.zip
Notes
Diffstat (limited to 'x11-toolkits/qwt5')
-rw-r--r--x11-toolkits/qwt5/Makefile55
-rw-r--r--x11-toolkits/qwt5/distinfo6
-rw-r--r--x11-toolkits/qwt5/files/Makefile.man83
-rw-r--r--x11-toolkits/qwt5/pkg-plist1672
4 files changed, 967 insertions, 849 deletions
diff --git a/x11-toolkits/qwt5/Makefile b/x11-toolkits/qwt5/Makefile
index 2d5525492ce1..a0701cc0c276 100644
--- a/x11-toolkits/qwt5/Makefile
+++ b/x11-toolkits/qwt5/Makefile
@@ -6,11 +6,10 @@
#
PORTNAME= qwt
-PORTVERSION= 5.0.0.r1
+PORTVERSION= 5.0.0
CATEGORIES= x11-toolkits
MASTER_SITES= SF
PKGNAMESUFFIX= -devel
-DISTNAME= ${PORTNAME}-5.0.0rc1
MAINTAINER= makc@issp.ac.ru
COMMENT= Qt Widgets for Technical Applications
@@ -21,27 +20,57 @@ CONFLICTS= qwt-4.*
USE_QT_VER= 3
USE_BZIP2= yes
-MAKE_ENV= CC="${CC}" CXX="${CXX}" \
- QTDIR="${QT_PREFIX}"
+USE_GMAKE= yes
+MAKE_ENV= QTDIR="${QT_PREFIX}"
USE_LDCONFIG= yes
-.if !defined(NOPORTDOCS)
-PLIST_SUB+= NODOCS=""
+OPTIONS= DESIGNER_PLUGIN "Install plugin for Qt Designer" on
+
+QMAKE= qmake
+QMAKESPEC= ${LOCALBASE}/share/qt/mkspecs/freebsd-g++
+PLUGINDIR= ${PREFIX}/lib/kde3/plugins/designer
+
+.include <bsd.port.pre.mk>
+.include <${FILESDIR}/Makefile.man>
+
+.if !defined(WITHOUT_DESIGNER_PLUGIN)
+PLIST_SUB+= DESIGNER_PLUGIN=""
.else
-PLIST_SUB+= NODOCS="@comment "
+PLIST_SUB+= DESIGNER_PLUGIN="@comment "
.endif
-pre-build:
- cd ${WRKSRC} && qmake -spec ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ qwt.pro -o Makefile
+QPRO_DIRS= src
+.if !defined(WITHOUT_DESIGNER_PLUGIN)
+QPRO_DIRS+= designer
+.endif
+
+do-build:
+.for d in ${QPRO_DIRS}
+ (cd ${WRKSRC}/${d} && ${QMAKE} -spec ${QMAKESPEC} && \
+ ${REINPLACE_CMD} -e \
+ 's|^CC .*|CC=${CC}|; \
+ s|^CXX .*|CXX=${CXX}|; \
+ s|^LINK .*|LINK=${CXX}|; \
+ s|-pipe||; \
+ s|^\(CFLAGS .*= \)|\1${CFLAGS}|; \
+ s|^\(CXXFLAGS = \)|\1${CXXFLAGS}|' \
+ ${WRKSRC}/${d}/Makefile && \
+ ${SETENV} ${MAKE_ENV} ${GMAKE})
+.endfor
do-install:
${INSTALL_DATA} ${WRKSRC}/lib/libqwt.so.5.0.0 ${PREFIX}/lib/libqwt.so.5
${LN} -fs ${PREFIX}/lib/libqwt.so.5 ${PREFIX}/lib/libqwt.so
- ${MKDIR} ${PREFIX}/include/qwt
- ${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/include/qwt
+ ${MKDIR} ${PREFIX}/include/qwt && \
+ ${INSTALL_DATA} ${WRKSRC}/src/*.h ${PREFIX}/include/qwt
+ ${INSTALL_MAN} ${WRKSRC}/doc/man/man3/Qwt* ${PREFIX}/man/man3
+.if !defined(WITHOUT_DESIGNER_PLUGIN)
+ ${MKDIR} ${PLUGINDIR} && \
+ ${INSTALL_DATA} ${WRKSRC}/designer/plugins/designer/libqwtplugin.so ${PLUGINDIR}
+.endif
.if !defined(NOPORTDOCS)
- ${MKDIR} ${PREFIX}/share/doc/qwt
+ ${MKDIR} ${PREFIX}/share/doc/qwt && \
${INSTALL_DATA} ${WRKSRC}/doc/html/* ${PREFIX}/share/doc/qwt
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/x11-toolkits/qwt5/distinfo b/x11-toolkits/qwt5/distinfo
index 51030beb1509..ad1fa7790e15 100644
--- a/x11-toolkits/qwt5/distinfo
+++ b/x11-toolkits/qwt5/distinfo
@@ -1,3 +1,3 @@
-MD5 (qwt-5.0.0rc1.tar.bz2) = bb6e035f7477a05ff52f7ad47a46a24a
-SHA256 (qwt-5.0.0rc1.tar.bz2) = 410103615705eaacb9eab576257aa27ebec840f88a3b0ef695a02ec70d167e1e
-SIZE (qwt-5.0.0rc1.tar.bz2) = 1576317
+MD5 (qwt-5.0.0.tar.bz2) = 93b3737db6ca973c6cfdab3e5959172c
+SHA256 (qwt-5.0.0.tar.bz2) = 85cb35097b72659e99748457ad96934e4a5c3fcd36fc8a1e19d66fde57efb375
+SIZE (qwt-5.0.0.tar.bz2) = 1662562
diff --git a/x11-toolkits/qwt5/files/Makefile.man b/x11-toolkits/qwt5/files/Makefile.man
new file mode 100644
index 000000000000..f75790e81431
--- /dev/null
+++ b/x11-toolkits/qwt5/files/Makefile.man
@@ -0,0 +1,83 @@
+MAN3= QwtAbstractScale.3 \
+ QwtAbstractScaleDraw.3 \
+ QwtAbstractSlider.3 \
+ QwtAlphaColorMap.3 \
+ QwtAnalogClock.3 \
+ QwtArrayData.3 \
+ QwtArrowButton.3 \
+ QwtCPointerData.3 \
+ QwtColorMap.3 \
+ QwtCompass.3 \
+ QwtCompassMagnetNeedle.3 \
+ QwtCompassRose.3 \
+ QwtCompassWindArrow.3 \
+ QwtCounter.3 \
+ QwtCurveFitter.3 \
+ QwtData.3 \
+ QwtDial.3 \
+ QwtDialNeedle.3 \
+ QwtDialScaleDraw.3 \
+ QwtDialSimpleNeedle.3 \
+ QwtDoubleInterval.3 \
+ QwtDoubleRange.3 \
+ QwtDynGridLayout.3 \
+ QwtEventPattern.3 \
+ QwtEventPattern_KeyPattern.3 \
+ QwtEventPattern_MousePattern.3 \
+ QwtIntervalData.3 \
+ QwtKnob.3 \
+ QwtLegend.3 \
+ QwtLegendItem.3 \
+ QwtLinearColorMap.3 \
+ QwtLinearScaleEngine.3 \
+ QwtLog10ScaleEngine.3 \
+ QwtMathMLTextEngine.3 \
+ QwtMetricsMap.3 \
+ QwtPainter.3 \
+ QwtPanner.3 \
+ QwtPicker.3 \
+ QwtPickerClickPointMachine.3 \
+ QwtPickerClickRectMachine.3 \
+ QwtPickerDragPointMachine.3 \
+ QwtPickerDragRectMachine.3 \
+ QwtPickerMachine.3 \
+ QwtPickerPolygonMachine.3 \
+ QwtPlainTextEngine.3 \
+ QwtPlot.3 \
+ QwtPlotCanvas.3 \
+ QwtPlotCurve.3 \
+ QwtPlotDict.3 \
+ QwtPlotGrid.3 \
+ QwtPlotItem.3 \
+ QwtPlotLayout.3 \
+ QwtPlotMagnifier.3 \
+ QwtPlotMarker.3 \
+ QwtPlotPanner.3 \
+ QwtPlotPicker.3 \
+ QwtPlotPrintFilter.3 \
+ QwtPlotRasterItem.3 \
+ QwtPlotSpectrogram.3 \
+ QwtPlotSvgItem.3 \
+ QwtPlotZoomer.3 \
+ QwtPolygonFData.3 \
+ QwtRasterData.3 \
+ QwtRect.3 \
+ QwtRichTextEngine.3 \
+ QwtRoundScaleDraw.3 \
+ QwtScaleArithmetic.3 \
+ QwtScaleDiv.3 \
+ QwtScaleDraw.3 \
+ QwtScaleEngine.3 \
+ QwtScaleMap.3 \
+ QwtScaleTransformation.3 \
+ QwtScaleWidget.3 \
+ QwtSimpleCompassRose.3 \
+ QwtSlider.3 \
+ QwtSpline.3 \
+ QwtSplineCurveFitter.3 \
+ QwtSymbol.3 \
+ QwtText.3 \
+ QwtTextEngine.3 \
+ QwtTextLabel.3 \
+ QwtThermo.3 \
+ QwtWheel.3
diff --git a/x11-toolkits/qwt5/pkg-plist b/x11-toolkits/qwt5/pkg-plist
index 18423f3a8eea..cfd85c4f274b 100644
--- a/x11-toolkits/qwt5/pkg-plist
+++ b/x11-toolkits/qwt5/pkg-plist
@@ -61,842 +61,848 @@ include/qwt/qwt_symbol.h
include/qwt/qwt_text.h
include/qwt/qwt_text_engine.h
include/qwt/qwt_text_label.h
-include/qwt/qwt_text_plugin.h
include/qwt/qwt_thermo.h
include/qwt/qwt_valuelist.h
include/qwt/qwt_wheel.h
lib/libqwt.so
lib/libqwt.so.5
-%%NODOCS%%%%DOCSDIR%%/analogclock.png
-%%NODOCS%%%%DOCSDIR%%/annotated.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_analog_clock__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_array_data__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_arrow_button-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_arrow_button.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_color_map-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_color_map.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_color_map__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_color_map__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_color_map__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_rose-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_rose.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_rose__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_rose__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_rose__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_counter__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_curve_fitter-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_curve_fitter.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_curve_fitter__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_curve_fitter__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_curve_fitter__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_data-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_data.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_data__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_data__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_data__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_needle-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_needle.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_needle__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_needle__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_needle__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_double_interval-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_double_interval.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_double_range-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_double_range.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_double_range__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_double_range__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_double_range__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dyn_grid_layout-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_dyn_grid_layout.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_key_pattern-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_key_pattern.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_mouse_pattern-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_mouse_pattern.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_event_pattern__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_interval_data-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_interval_data.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_knob__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_legend_item__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_metrics_map-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_metrics_map.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_painter-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_painter.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_painter__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_painter__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_painter__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_panner-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_panner.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_panner__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_panner__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_panner__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_machine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_machine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_machine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_machine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_machine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_canvas-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_canvas.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_curve__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_dict-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_dict.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_dict__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_dict__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_dict__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_grid__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_item-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_item.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_item__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_item__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_item__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_layout-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_layout.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_magnifier-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_magnifier.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_marker__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_panner__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_picker__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_print_filter-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_print_filter.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_raster_data-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_raster_data.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_raster_data__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_raster_data__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_raster_data__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rect-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rect.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_arithmetic-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_arithmetic.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_div-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_div.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_draw__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_engine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_engine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_engine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_engine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_engine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_map-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_map.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_map__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_map__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_map__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_transformation-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_transformation.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_widget-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_scale_widget.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_slider__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_symbol-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_symbol.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_engine-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_engine.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_engine__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_engine__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_engine__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_label-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_label.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_label__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_label__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_label__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_plugin-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_text_plugin.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_thermo__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel-members.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel.html
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel__coll__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel__coll__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel__coll__graph.png
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel__inherit__graph.map
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel__inherit__graph.md5
-%%NODOCS%%%%DOCSDIR%%/class_qwt_wheel__inherit__graph.png
-%%NODOCS%%%%DOCSDIR%%/classes.html
-%%NODOCS%%%%DOCSDIR%%/controlscreenshots.html
-%%NODOCS%%%%DOCSDIR%%/cpuplot.png
-%%NODOCS%%%%DOCSDIR%%/curves.png
-%%NODOCS%%%%DOCSDIR%%/curvescreenshots.html
-%%NODOCS%%%%DOCSDIR%%/deprecated.html
-%%NODOCS%%%%DOCSDIR%%/dials1.png
-%%NODOCS%%%%DOCSDIR%%/dials2.png
-%%NODOCS%%%%DOCSDIR%%/doxygen.css
-%%NODOCS%%%%DOCSDIR%%/doxygen.png
-%%NODOCS%%%%DOCSDIR%%/files.html
-%%NODOCS%%%%DOCSDIR%%/form_0.png
-%%NODOCS%%%%DOCSDIR%%/form_1.png
-%%NODOCS%%%%DOCSDIR%%/form_2.png
-%%NODOCS%%%%DOCSDIR%%/formula.repository
-%%NODOCS%%%%DOCSDIR%%/functions.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x62.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x63.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x64.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x65.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x66.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x67.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x68.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x69.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x6b.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x6c.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x6d.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x6e.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x6f.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x70.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x71.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x72.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x73.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x74.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x75.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x76.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x77.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x78.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x79.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x7a.html
-%%NODOCS%%%%DOCSDIR%%/functions_0x7e.html
-%%NODOCS%%%%DOCSDIR%%/functions_enum.html
-%%NODOCS%%%%DOCSDIR%%/functions_func.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x62.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x63.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x64.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x65.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x66.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x67.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x68.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x69.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x6b.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x6c.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x6d.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x6e.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x6f.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x70.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x71.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x72.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x73.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x74.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x75.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x76.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x77.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x78.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x79.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x7a.html
-%%NODOCS%%%%DOCSDIR%%/functions_func_0x7e.html
-%%NODOCS%%%%DOCSDIR%%/functions_rela.html
-%%NODOCS%%%%DOCSDIR%%/functions_type.html
-%%NODOCS%%%%DOCSDIR%%/functions_vars.html
-%%NODOCS%%%%DOCSDIR%%/graph.png
-%%NODOCS%%%%DOCSDIR%%/graph_legend.dot
-%%NODOCS%%%%DOCSDIR%%/graph_legend.html
-%%NODOCS%%%%DOCSDIR%%/graph_legend.png
-%%NODOCS%%%%DOCSDIR%%/hierarchy.html
-%%NODOCS%%%%DOCSDIR%%/histogram.png
-%%NODOCS%%%%DOCSDIR%%/histogramscreenshots.html
-%%NODOCS%%%%DOCSDIR%%/index.html
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__0.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__0.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__0.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__1.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__1.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__1.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__10.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__10.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__10.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__11.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__11.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__11.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__12.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__12.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__12.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__13.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__13.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__13.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__14.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__14.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__14.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__15.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__15.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__15.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__16.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__16.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__16.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__17.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__17.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__17.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__18.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__18.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__18.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__19.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__19.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__19.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__2.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__2.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__2.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__20.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__20.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__20.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__21.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__21.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__21.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__22.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__22.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__22.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__23.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__23.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__23.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__24.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__24.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__24.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__25.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__25.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__25.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__26.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__26.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__26.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__27.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__27.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__27.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__28.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__28.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__28.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__29.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__29.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__29.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__3.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__3.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__3.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__30.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__30.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__30.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__31.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__31.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__31.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__32.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__32.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__32.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__33.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__33.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__33.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__34.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__34.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__34.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__35.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__35.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__35.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__36.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__36.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__36.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__37.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__37.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__37.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__38.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__38.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__38.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__4.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__4.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__4.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__5.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__5.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__5.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__6.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__6.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__6.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__7.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__7.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__7.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__8.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__8.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__8.png
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__9.map
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__9.md5
-%%NODOCS%%%%DOCSDIR%%/inherit__graph__9.png
-%%NODOCS%%%%DOCSDIR%%/inherits.html
-%%NODOCS%%%%DOCSDIR%%/knob.png
-%%NODOCS%%%%DOCSDIR%%/pages.html
-%%NODOCS%%%%DOCSDIR%%/plot.png
-%%NODOCS%%%%DOCSDIR%%/qwt__abstract__scale_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__abstract__scale_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__abstract__scale__draw_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__abstract__scale__draw_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__abstract__slider_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__abstract__slider_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__analog__clock_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__analog__clock_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__array_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__arrow__button_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__arrow__button_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__color__map_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__color__map_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__compass_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__compass_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__compass__rose_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__compass__rose_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__counter_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__counter_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__curve__fitter_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__curve__fitter_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__data_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__data_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__dial_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__dial_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__dial__needle_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__dial__needle_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__double__interval_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__double__interval_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__double__range_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__double__range_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__double__rect_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__double__rect_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__dyngrid__layout_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__dyngrid__layout_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__event__pattern_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__event__pattern_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__global_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__interval__data_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__interval__data_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__knob_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__knob_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__layout__metrics_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__layout__metrics_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__legend_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__legend_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__legend__item_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__legend__item_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__math_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__math_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__paint__buffer_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__paint__buffer_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__painter_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__painter_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__panner_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__panner_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__picker_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__picker_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__picker__machine_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__picker__machine_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__axis_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__canvas_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__canvas_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__curve_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__curve_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__dict_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__dict_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__grid_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__grid_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__item_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__item_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__layout_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__layout_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__magnifier_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__magnifier_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__marker_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__marker_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__panner_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__panner_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__picker_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__picker_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__print_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__printfilter_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__printfilter_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__rasteritem_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__rasteritem_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__spectrogram_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__spectrogram_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__svgitem_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__svgitem_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__xml_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__zoomer_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__plot__zoomer_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__polygon_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__raster__data_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__raster__data_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__rect_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__rect_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__round__scale__draw_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__round__scale__draw_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__div_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__div_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__draw_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__draw_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__engine_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__engine_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__map_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__map_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__widget_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__scale__widget_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__slider_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__slider_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__spline_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__spline_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__symbol_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__symbol_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__text_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__text_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__text__engine_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__text__engine_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__text__label_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__text__label_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__text__plugin_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__thermo_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__thermo_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__valuelist_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__wheel_8cpp-source.html
-%%NODOCS%%%%DOCSDIR%%/qwt__wheel_8h-source.html
-%%NODOCS%%%%DOCSDIR%%/qwtinstall.html
-%%NODOCS%%%%DOCSDIR%%/qwtlicense.html
-%%NODOCS%%%%DOCSDIR%%/qwtspec.html
-%%NODOCS%%%%DOCSDIR%%/radio.png
-%%NODOCS%%%%DOCSDIR%%/scatterplot.png
-%%NODOCS%%%%DOCSDIR%%/scatterscreenshots.html
-%%NODOCS%%%%DOCSDIR%%/sinus.png
-%%NODOCS%%%%DOCSDIR%%/sliders.png
-%%NODOCS%%%%DOCSDIR%%/spectrogram1.png
-%%NODOCS%%%%DOCSDIR%%/spectrogram2.png
-%%NODOCS%%%%DOCSDIR%%/spectrogram3.png
-%%NODOCS%%%%DOCSDIR%%/spectrogramscreenshots.html
-%%NODOCS%%%%DOCSDIR%%/sysinfo.png
-%%NODOCS%%%%DOCSDIR%%/tab_b.gif
-%%NODOCS%%%%DOCSDIR%%/tab_l.gif
-%%NODOCS%%%%DOCSDIR%%/tab_r.gif
-%%NODOCS%%%%DOCSDIR%%/tabs.css
-%%NODOCS%%%%DOCSDIR%%/todo.html
-%%NODOCS%%@dirrm %%DOCSDIR%%
+%%DESIGNER_PLUGIN%%lib/kde3/plugins/designer/libqwtplugin.so
+%%PORTDOCS%%%%DOCSDIR%%/analogclock.png
+%%PORTDOCS%%%%DOCSDIR%%/annotated.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_scale_draw__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_abstract_slider__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_alpha_color_map__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_analog_clock__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_array_data__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_arrow_button-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_arrow_button.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_c_pointer_data__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_color_map-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_color_map.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_color_map__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_color_map__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_color_map__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_magnet_needle__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_rose-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_rose.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_rose__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_rose__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_rose__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_compass_wind_arrow__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_counter__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_curve_fitter-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_curve_fitter.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_curve_fitter__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_curve_fitter__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_curve_fitter__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_data-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_data.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_data__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_data__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_data__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_needle-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_needle.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_needle__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_needle__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_needle__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_scale_draw__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dial_simple_needle__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_double_interval-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_double_interval.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_double_range-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_double_range.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_double_range__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_double_range__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_double_range__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dyn_grid_layout-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_dyn_grid_layout.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_key_pattern-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_key_pattern.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_mouse_pattern-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern_1_1_mouse_pattern.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_event_pattern__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_interval_data-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_interval_data.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_knob__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_legend_item__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_color_map__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_linear_scale_engine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_log10_scale_engine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_math_m_l_text_engine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_metrics_map-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_metrics_map.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_painter-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_painter.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_painter__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_painter__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_painter__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_panner-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_panner.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_panner__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_panner__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_panner__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_point_machine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_click_rect_machine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_point_machine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_drag_rect_machine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_machine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_machine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_machine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_machine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_machine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_picker_polygon_machine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plain_text_engine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_canvas-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_canvas.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_curve__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_dict-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_dict.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_dict__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_dict__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_dict__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_grid__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_item-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_item.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_item__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_item__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_item__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_layout-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_layout.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_magnifier-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_magnifier.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_marker__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_panner__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_picker__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_print_filter-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_print_filter.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_raster_item__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_spectrogram__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_svg_item__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_plot_zoomer__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_polygon_f_data__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_raster_data-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_raster_data.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_raster_data__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_raster_data__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_raster_data__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rect-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rect.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_rich_text_engine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_round_scale_draw__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_arithmetic-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_arithmetic.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_div-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_div.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_draw__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_engine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_engine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_engine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_engine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_engine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_map-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_map.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_map__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_map__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_map__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_transformation-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_transformation.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_widget-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_scale_widget.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_simple_compass_rose__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_slider__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_spline_curve_fitter__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_symbol-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_symbol.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_engine-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_engine.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_engine__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_engine__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_engine__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_label-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_label.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_label__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_label__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_text_label__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_thermo__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel-members.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel.html
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel__coll__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel__coll__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel__coll__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel__inherit__graph.map
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel__inherit__graph.md5
+%%PORTDOCS%%%%DOCSDIR%%/class_qwt_wheel__inherit__graph.png
+%%PORTDOCS%%%%DOCSDIR%%/classes.html
+%%PORTDOCS%%%%DOCSDIR%%/controlscreenshots.html
+%%PORTDOCS%%%%DOCSDIR%%/cpuplot.png
+%%PORTDOCS%%%%DOCSDIR%%/curves.png
+%%PORTDOCS%%%%DOCSDIR%%/curvescreenshots.html
+%%PORTDOCS%%%%DOCSDIR%%/deprecated.html
+%%PORTDOCS%%%%DOCSDIR%%/dials1.png
+%%PORTDOCS%%%%DOCSDIR%%/dials2.png
+%%PORTDOCS%%%%DOCSDIR%%/doxygen.css
+%%PORTDOCS%%%%DOCSDIR%%/doxygen.png
+%%PORTDOCS%%%%DOCSDIR%%/files.html
+%%PORTDOCS%%%%DOCSDIR%%/form_0.png
+%%PORTDOCS%%%%DOCSDIR%%/form_1.png
+%%PORTDOCS%%%%DOCSDIR%%/form_2.png
+%%PORTDOCS%%%%DOCSDIR%%/formula.repository
+%%PORTDOCS%%%%DOCSDIR%%/functions.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x62.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x63.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x64.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x65.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x66.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x67.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x68.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x69.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x6b.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x6c.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x6d.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x6e.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x6f.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x70.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x71.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x72.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x73.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x74.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x75.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x76.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x77.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x78.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x79.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x7a.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_0x7e.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_enum.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x62.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x63.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x64.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x65.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x66.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x67.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x68.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x69.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x6b.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x6c.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x6d.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x6e.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x6f.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x70.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x71.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x72.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x73.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x74.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x75.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x76.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x77.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x78.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x79.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x7a.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_func_0x7e.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_rela.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_type.html
+%%PORTDOCS%%%%DOCSDIR%%/functions_vars.html
+%%PORTDOCS%%%%DOCSDIR%%/graph.png
+%%PORTDOCS%%%%DOCSDIR%%/graph_legend.dot
+%%PORTDOCS%%%%DOCSDIR%%/graph_legend.html
+%%PORTDOCS%%%%DOCSDIR%%/graph_legend.png
+%%PORTDOCS%%%%DOCSDIR%%/hierarchy.html
+%%PORTDOCS%%%%DOCSDIR%%/histogram.png
+%%PORTDOCS%%%%DOCSDIR%%/histogramscreenshots.html
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__0.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__0.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__0.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__1.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__1.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__1.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__10.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__10.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__10.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__11.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__11.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__11.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__12.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__12.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__12.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__13.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__13.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__13.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__14.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__14.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__14.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__15.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__15.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__15.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__16.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__16.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__16.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__17.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__17.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__17.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__18.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__18.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__18.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__19.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__19.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__19.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__2.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__2.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__2.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__20.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__20.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__20.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__21.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__21.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__21.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__22.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__22.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__22.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__23.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__23.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__23.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__24.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__24.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__24.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__25.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__25.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__25.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__26.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__26.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__26.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__27.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__27.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__27.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__28.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__28.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__28.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__29.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__29.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__29.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__3.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__3.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__3.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__30.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__30.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__30.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__31.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__31.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__31.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__32.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__32.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__32.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__33.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__33.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__33.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__34.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__34.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__34.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__35.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__35.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__35.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__36.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__36.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__36.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__37.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__37.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__37.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__4.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__4.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__4.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__5.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__5.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__5.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__6.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__6.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__6.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__7.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__7.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__7.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__8.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__8.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__8.png
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__9.map
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__9.md5
+%%PORTDOCS%%%%DOCSDIR%%/inherit__graph__9.png
+%%PORTDOCS%%%%DOCSDIR%%/inherits.html
+%%PORTDOCS%%%%DOCSDIR%%/knob.png
+%%PORTDOCS%%%%DOCSDIR%%/pages.html
+%%PORTDOCS%%%%DOCSDIR%%/plot.png
+%%PORTDOCS%%%%DOCSDIR%%/qwt__abstract__scale_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__abstract__scale_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__abstract__scale__draw_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__abstract__scale__draw_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__abstract__slider_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__abstract__slider_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__analog__clock_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__analog__clock_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__array_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__arrow__button_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__arrow__button_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__color__map_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__color__map_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__compass_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__compass_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__compass__rose_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__compass__rose_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__counter_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__counter_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__curve__fitter_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__curve__fitter_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__data_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__data_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__dial_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__dial_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__dial__needle_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__dial__needle_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__double__interval_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__double__interval_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__double__range_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__double__range_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__double__rect_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__double__rect_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__dyngrid__layout_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__dyngrid__layout_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__event__pattern_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__event__pattern_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__global_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__interval__data_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__interval__data_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__knob_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__knob_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__layout__metrics_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__layout__metrics_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__legend_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__legend_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__legend__item_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__legend__item_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__math_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__math_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__mathml__text__engine_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__mathml__text__engine_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__paint__buffer_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__paint__buffer_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__painter_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__painter_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__panner_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__panner_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__picker_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__picker_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__picker__machine_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__picker__machine_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__axis_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__canvas_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__canvas_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__curve_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__curve_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__dict_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__dict_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__grid_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__grid_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__item_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__item_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__layout_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__layout_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__magnifier_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__magnifier_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__marker_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__marker_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__panner_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__panner_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__picker_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__picker_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__print_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__printfilter_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__printfilter_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__rasteritem_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__rasteritem_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__spectrogram_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__spectrogram_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__svgitem_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__svgitem_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__xml_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__zoomer_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__plot__zoomer_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__polygon_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__raster__data_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__raster__data_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__rect_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__rect_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__round__scale__draw_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__round__scale__draw_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__div_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__div_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__draw_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__draw_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__engine_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__engine_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__map_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__map_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__widget_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__scale__widget_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__slider_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__slider_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__spline_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__spline_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__symbol_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__symbol_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__text_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__text_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__text__engine_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__text__engine_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__text__label_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__text__label_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__thermo_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__thermo_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__valuelist_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__wheel_8cpp-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwt__wheel_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/qwtinstall.html
+%%PORTDOCS%%%%DOCSDIR%%/qwtlicense.html
+%%PORTDOCS%%%%DOCSDIR%%/radio.png
+%%PORTDOCS%%%%DOCSDIR%%/scatterplot.png
+%%PORTDOCS%%%%DOCSDIR%%/scatterscreenshots.html
+%%PORTDOCS%%%%DOCSDIR%%/sinus.png
+%%PORTDOCS%%%%DOCSDIR%%/sliders.png
+%%PORTDOCS%%%%DOCSDIR%%/spectrogram1.png
+%%PORTDOCS%%%%DOCSDIR%%/spectrogram2.png
+%%PORTDOCS%%%%DOCSDIR%%/spectrogram3.png
+%%PORTDOCS%%%%DOCSDIR%%/spectrogramscreenshots.html
+%%PORTDOCS%%%%DOCSDIR%%/sysinfo.png
+%%PORTDOCS%%%%DOCSDIR%%/tab_b.gif
+%%PORTDOCS%%%%DOCSDIR%%/tab_l.gif
+%%PORTDOCS%%%%DOCSDIR%%/tab_r.gif
+%%PORTDOCS%%%%DOCSDIR%%/tabs.css
+%%PORTDOCS%%%%DOCSDIR%%/todo.html
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+%%DESIGNER_PLUGIN%%@dirrmtry lib/kde3/plugins/designer/
+%%DESIGNER_PLUGIN%%@dirrmtry lib/kde3/plugins/
+%%DESIGNER_PLUGIN%%@dirrmtry lib/kde3/
@dirrm include/qwt