top | up | prev | next

MappedInputFile Class

Definition at line 16 of MappedInputFile.hpp

Constructors

MappedInputFile(const std::string& fileName_)

Member Functions

const char* Begin() const
const char* End() const

Member Variables

std::string fileName
MappedInputFileImpl* impl

Constructor Details

MappedInputFile Constructor

soulng::util::MappedInputFile::MappedInputFile(const std::string& fileName_)

Definition at line 41 of MappedInputFile.cpp :
41 : fileName(fileName_)impl(new MappedInputFileImpl(fileName))
42 {
43 }


Declaration at line 19 of MappedInputFile.hpp


Member Function Details

Begin Member Function

const char * soulng::util::MappedInputFile::Begin() const

Definition at line 51 of MappedInputFile.cpp
Declaration at line 21 of MappedInputFile.hpp

Calls: soulng::util::MappedInputFileImpl::Data , soulng::util::MappedInputFileImpl::Size


End Member Function

const char * soulng::util::MappedInputFile::End() const

Definition at line 66 of MappedInputFile.cpp :
67 {
68     return impl->Data() + impl->Size();
69 }


Declaration at line 22 of MappedInputFile.hpp

Calls: soulng::util::MappedInputFileImpl::Data , soulng::util::MappedInputFileImpl::Size


top | up | prev | next