annotate view/view.pro @ 473:4f4f943bfdfc

* Merge from one-fftdataserver-per-fftmodel branch. This bit of reworking (which is not described very accurately by the title of the branch) turns the MatrixFile object into something that either reads or writes, but not both, and separates the FFT file cache reader and writer implementations separately. This allows the FFT data server to have a single thread owning writers and one reader per "customer" thread, and for all locking to be vastly simplified and concentrated in the data server alone (because none of the classes it makes use of is used in more than one thread at a time). The result is faster and more trustworthy code.
author Chris Cannam
date Tue, 27 Jan 2009 13:25:10 +0000
parents 9c40dc10c88c
children 44f391ec2172
rev   line source
Chris@128 1 TEMPLATE = lib
Chris@128 2
Chris@128 3 SV_UNIT_PACKAGES =
Chris@128 4 load(../sv.prf)
Chris@128 5
Chris@128 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@128 7 QT += xml
Chris@128 8
Chris@128 9 TARGET = svview
Chris@128 10
Chris@128 11 DEPENDPATH += . ..
Chris@128 12 INCLUDEPATH += . ..
Chris@128 13 OBJECTS_DIR = tmp_obj
Chris@128 14 MOC_DIR = tmp_moc
Chris@128 15
Chris@128 16 # Input
Chris@173 17 HEADERS += Overview.h \
Chris@173 18 Pane.h \
Chris@173 19 PaneStack.h \
Chris@173 20 View.h \
Chris@173 21 ViewManager.h
Chris@173 22 SOURCES += Overview.cpp \
Chris@173 23 Pane.cpp \
Chris@173 24 PaneStack.cpp \
Chris@173 25 View.cpp \
Chris@173 26 ViewManager.cpp