author | llornkcor <llornkcor> | 2003-11-12 21:00:27 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-11-12 21:00:27 (UTC) |
commit | aec97f423ccc42f803f09ccf743b42e36363cc26 (patch) (side-by-side diff) | |
tree | 7281736f94213dd9b8810b47e86633bf7e788240 | |
parent | d9a835f8672d0fb485335e9fc85c35a430320ce2 (diff) | |
download | opie-aec97f423ccc42f803f09ccf743b42e36363cc26.zip opie-aec97f423ccc42f803f09ccf743b42e36363cc26.tar.gz opie-aec97f423ccc42f803f09ccf743b42e36363cc26.tar.bz2 |
opierec doesnot need iostream.h
-rw-r--r-- | noncore/multimedia/opierec/qtrec.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/noncore/multimedia/opierec/qtrec.h b/noncore/multimedia/opierec/qtrec.h index 5d6ed62..ada3270 100644 --- a/noncore/multimedia/opierec/qtrec.h +++ b/noncore/multimedia/opierec/qtrec.h @@ -1,59 +1,58 @@ /**************************************************************************** ** Created: Thu Jan 17 11:19:45 2002 copyright 2002 by L.J. Potter ljp@llornkcor.com ****************************************************************************/ #ifndef QTREC_H #define QTREC_H #define VERSION 1.0 #include <qpe/ir.h> -#include <iostream.h> #include <qfile.h> #include <qimage.h> #include <qlineedit.h> #include <qpixmap.h> #include <qvariant.h> #include <qwidget.h> #include <stdio.h> #include <stdlib.h> #include "device.h" #include "wavFile.h" class QButtonGroup; class QCheckBox; class QComboBox; class QGridLayout; class QGroupBox; class QHBoxLayout; class QIconView; class QIconViewItem; class QLabel; class QLabel; class QListView; class QListViewItem; class QPushButton; class QSlider; class QTabWidget; class QTimer; class QVBoxLayout; class QLineEdit; #define MAX_TRACKS 2 //#define BUFSIZE 4096 // #define BUFSIZE 8182 //Z default buffer size #define BUFSIZE 1024 //#define BUFSIZE 2048 #define FRAGSIZE 0x7fff000A; #define WAVE_FORMAT_DVI_ADPCM (0x0011) #define WAVE_FORMAT_PCM (0x0001) //AFMT_IMA_ADPCM class QtRec : public QWidget { Q_OBJECT public: static QString appName() { return QString::fromLatin1("opierec"); } |