From 469bbcf0701e1eb8a6670c23145b0da87357e178 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 25 Mar 2012 20:00:08 +0000 Subject: Code is all reorganized. We're about ready to release. I should write up a little explenation of the arrangement. --- src/filter.cpp | 113 --------------------------------------------------------- 1 file changed, 113 deletions(-) delete mode 100644 src/filter.cpp (limited to 'src/filter.cpp') diff --git a/src/filter.cpp b/src/filter.cpp deleted file mode 100644 index 3fe8f0e..0000000 --- a/src/filter.cpp +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (C) 2007-2011 Xagasoft, All rights reserved. - * - * This file is part of the libbu++ library and is released under the - * terms of the license contained in the file LICENSE. - */ - -#include "bu/filter.h" - -Bu::Filter::Filter( Bu::Stream &rNext ) : - rNext( rNext ) -{ -} - -Bu::Filter::~Filter() -{ -} - -void Bu::Filter::close() -{ - stop(); - rNext.close(); -} - -Bu::size Bu::Filter::tell() -{ - return rNext.tell(); -} - -void Bu::Filter::seek( Bu::size offset ) -{ - rNext.seek( offset ); -} - -void Bu::Filter::setPos( Bu::size pos ) -{ - rNext.setPos( pos ); -} - -void Bu::Filter::setPosEnd( Bu::size pos ) -{ - rNext.setPosEnd( pos ); -} - -bool Bu::Filter::isEos() -{ - return rNext.isEos(); -} - -bool Bu::Filter::isOpen() -{ - return rNext.isOpen(); -} - -bool Bu::Filter::canRead() -{ - return rNext.canRead(); -} - -bool Bu::Filter::canWrite() -{ - return rNext.canWrite(); -} - -bool Bu::Filter::isReadable() -{ - return rNext.isReadable(); -} - -bool Bu::Filter::isWritable() -{ - return rNext.isWritable(); -} - -bool Bu::Filter::isSeekable() -{ - return rNext.isSeekable(); -} - -bool Bu::Filter::isBlocking() -{ - return rNext.isBlocking(); -} - -void Bu::Filter::setBlocking( bool bBlocking ) -{ - rNext.setBlocking( bBlocking ); -} - -void Bu::Filter::setSize( Bu::size ) -{ -} - -void Bu::Filter::flush() -{ - rNext.flush(); -} - -Bu::size Bu::Filter::getSize() const -{ - return rNext.getSize(); -} - -Bu::size Bu::Filter::getBlockSize() const -{ - return rNext.getBlockSize(); -} - -Bu::String Bu::Filter::getLocation() const -{ - return rNext.getLocation(); -} - -- cgit v1.2.3