Fixed GCC 4 warnings.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19055 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-10-13 10:35:04 +00:00
parent 15f45baf60
commit 134f3f10ac
3 changed files with 44 additions and 25 deletions
+10 -5
View File
@@ -1,22 +1,27 @@
//----------------------------------------------------------------------
// This software is part of the OpenBeOS distribution and is covered
// by the OpenBeOS license.
//---------------------------------------------------------------------
/*
* Copyright 2003-2006, Haiku Inc.
* Distributed under the terms of the MIT License.
*
* Authors:
* Ingo Weinhold, [email protected]
*/
#ifndef _DISK_DEVICE_PRIVATE_H
#define _DISK_DEVICE_PRIVATE_H
#include <DiskDeviceDefs.h>
#include <DiskDeviceVisitor.h>
class BMessenger;
class BPath;
namespace BPrivate {
// PartitionFilter
class PartitionFilter {
public:
virtual ~PartitionFilter();
virtual bool Filter(BPartition *partition, int32 level) = 0;
};