summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/io_modem.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/io_modem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/io_modem.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/noncore/apps/opie-console/io_modem.cpp b/noncore/apps/opie-console/io_modem.cpp
index c499dfe..915a1d2 100644
--- a/noncore/apps/opie-console/io_modem.cpp
+++ b/noncore/apps/opie-console/io_modem.cpp
@@ -1,20 +1,16 @@
#include "io_modem.h"
#include "dialer.h"
-/* OPIE */
-#include <opie2/odebug.h>
-using namespace Opie::Core;
-
IOModem::IOModem( const Profile &profile )
: IOSerial( profile ) {
m_profile = profile;
}
IOModem::~IOModem() {
}
void IOModem::close() {
// Hangup, discarding result
@@ -79,30 +75,12 @@ void IOModem::reload( const Profile &config ) {
m_dcdLines = config.readBoolEntry("DCDLines", MODEM_DEFAULT_DCD_LINES );
m_multiLineUntag = config.readBoolEntry("MultiLineUntag", MODEM_DEFAULT_MULTI_LINE_UNTAG );
}
QString IOModem::identifier() const {
return "modem";
}
QString IOModem::name() const {
return "Modem IO Layer";
}
-
-void IOModem::slotExited(OProcess* proc ){
- close();
- /* delete it afterwards */
- delete proc;
-}
-
-QBitArray IOModem::supports()const {
- return QBitArray( 3 );
-}
-
-bool IOModem::isConnected() {
- return false;
-}
-
-void IOModem::send(const QByteArray &data) {
- odebug << "Please overload me..." << oendl;
-}