summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/file_layer.cpp
blob: 0c83700f56cb60048ae1d46715d0c18a1df89af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <qfile.h>
#include <opie/oprocess.h>

#include "file_layer.h"

FileTransferLayer::FileTransferLayer(IOLayer *layer)
    : QObject(), m_layer( layer )
{
}

FileTransferLayer::~FileTransferLayer() {
}

void FileTransferLayer::sendFile(const QFile&) {

}

void FileTransferLayer::sendFile(const QString&) {
}

IOLayer* FileTransferLayer::layer() {
    return m_layer;
}