2d690920ac
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12360 a95241bf-73f2-0310-859d-f6bbb57e9c96
30 lines
383 B
C++
30 lines
383 B
C++
// KPartitionVisitor.cpp
|
|
|
|
#include "KPartitionVisitor.h"
|
|
#include <util/kernel_cpp.h>
|
|
|
|
// constructor
|
|
KPartitionVisitor::KPartitionVisitor()
|
|
{
|
|
}
|
|
|
|
// destructor
|
|
KPartitionVisitor::~KPartitionVisitor()
|
|
{
|
|
}
|
|
|
|
// VisitPre
|
|
bool
|
|
KPartitionVisitor::VisitPre(KPartition *partition)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// VisitPost
|
|
bool
|
|
KPartitionVisitor::VisitPost(KPartition *partition)
|
|
{
|
|
return false;
|
|
}
|
|
|