summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opierec/main.cpp
authorllornkcor <llornkcor>2003-04-04 03:03:38 (UTC)
committer llornkcor <llornkcor>2003-04-04 03:03:38 (UTC)
commitce6388c4f44e9e76342a338954fff598372e06f0 (patch) (unidiff)
tree895c202343fc394335e6effdb535ccb864a587d3 /noncore/multimedia/opierec/main.cpp
parent487971af0c1b70babcc39fd549dc0d8142cd4865 (diff)
downloadopie-ce6388c4f44e9e76342a338954fff598372e06f0.zip
opie-ce6388c4f44e9e76342a338954fff598372e06f0.tar.gz
opie-ce6388c4f44e9e76342a338954fff598372e06f0.tar.bz2
bitches owe me money. initial commit. zaurus/vercel has sound drivers that doesnt actually change samplerates, so this kinda has problems, currently
Diffstat (limited to 'noncore/multimedia/opierec/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opierec/main.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/noncore/multimedia/opierec/main.cpp b/noncore/multimedia/opierec/main.cpp
new file mode 100644
index 0000000..5f7c02f
--- a/dev/null
+++ b/noncore/multimedia/opierec/main.cpp
@@ -0,0 +1,22 @@
1/***************************************************************************
2 main.cpp - main routine
3 ***************************************************************************/
4//// main.cpp
5//// copyright 2001, 2002, by L. J. Potter <ljp@llornkcor.com>
6/***************************************************************************
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 ***************************************************************************/
12#include "qtrec.h"
13#include <qpe/qpeapplication.h>
14
15int main(int argc, char* argv[]) {
16 QPEApplication a(argc, argv);
17 QtRec qtrec;
18 a.showMainWidget( &qtrec);
19 return a.exec();
20}
21
22