Some cleanup, no functional change

* typedef base classes as 'inherited' and use that instead of the
  explicit base class name
* remove superfluous scopes in case blocks


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40420 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe
2011-02-10 17:16:35 +00:00
parent 3db9c51d0f
commit 91ebce663d
4 changed files with 10 additions and 8 deletions
@@ -30,6 +30,8 @@ namespace BPrivate {
struct hpkg_header;
class PackageWriterImpl : public WriterImplBase {
typedef WriterImplBase inherited;
public:
PackageWriterImpl(
BPackageWriterListener* listener);
@@ -32,6 +32,8 @@ struct hpkg_header;
class RepositoryWriterImpl
: public WriterImplBase, private BPackageContentHandler {
typedef WriterImplBase inherited;
public:
RepositoryWriterImpl(
BRepositoryWriterListener* listener,