diff options
author | Aaron Seigo <aseigo@kde.org> | 2014-12-17 08:27:31 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-12-17 08:27:31 +0100 |
commit | 1c7e8fd482bb67a5487449948488bd286a3504c1 (patch) | |
tree | 38789d22037a0b2ed7550b60fd2280fa522c086d /common/resource.cpp | |
parent | 7265d88245767960f1b551bb57f8f84942b898d2 (diff) | |
download | sink-1c7e8fd482bb67a5487449948488bd286a3504c1.tar.gz sink-1c7e8fd482bb67a5487449948488bd286a3504c1.zip |
a basically-working Pipeline implementation
still a skeleton rather than a full body with flesh and blood, but
it is getting there!
Diffstat (limited to 'common/resource.cpp')
-rw-r--r-- | common/resource.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/common/resource.cpp b/common/resource.cpp index 11a03ca..ae28485 100644 --- a/common/resource.cpp +++ b/common/resource.cpp | |||
@@ -39,12 +39,18 @@ Resource::~Resource() | |||
39 | //delete d; | 39 | //delete d; |
40 | } | 40 | } |
41 | 41 | ||
42 | void Resource::processCommand(uint messageId, int commandId, const QByteArray &data, uint size, Pipeline *pipeline) | 42 | void Resource::processCommand(int commandId, const QByteArray &data, uint size, Pipeline *pipeline) |
43 | { | 43 | { |
44 | Q_UNUSED(commandId) | ||
45 | Q_UNUSED(data) | ||
46 | Q_UNUSED(size) | ||
47 | Q_UNUSED(pipeline) | ||
48 | pipeline->null(); | ||
44 | } | 49 | } |
45 | 50 | ||
46 | void Resource::synchronizeWithSource() | 51 | void Resource::synchronizeWithSource(Pipeline *pipeline) |
47 | { | 52 | { |
53 | pipeline->null(); | ||
48 | } | 54 | } |
49 | 55 | ||
50 | class ResourceFactory::Private | 56 | class ResourceFactory::Private |