1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkDirectory.cxx,v $
Language: C++
Date: $Date: 2006-05-10 20:27:15 $
Version: $Revision: 1.28 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "itkDirectory.h"
namespace itk
{
/**
*
*/
Directory::Directory()
{
m_Internal = new itksys::Directory;
}
/**
*
*/
Directory::~Directory()
{
delete m_Internal;
}
/**
*
*/
void Directory::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Directory for: " << m_Internal->GetPath() << "\n";
os << indent << "Contains the following files:\n";
indent = indent.GetNextIndent();
unsigned long numFiles = m_Internal->GetNumberOfFiles();
for ( unsigned long i = 0; i < numFiles; ++i)
{
os << indent << m_Internal->GetFile(i) << "\n";
}
}
/**
*
*/
bool Directory::Load(const char* dir)
{
return m_Internal->Load(dir);
}
/**
*
*/
std::vector<std::string>::size_type Directory::GetNumberOfFiles()
{
return m_Internal->GetNumberOfFiles();
}
/**
*
*/
const char* Directory::GetFile(unsigned int index)
{
return m_Internal->GetFile(index);
}
} // end namespace itk
|