ICF 3.0.5.47
Technical documentation of ICF Libraries
CFileArchiveInfo.h
Go to the documentation of this file.
1/********************************************************************************
2** This file is part of the ICF Framework. Copyright (C) Witold Gantzke & Kirill Lepskiy
3** ICF Framework may be used under the terms of the LGPL License v. 2.1 by the Free Software Foundation.
4********************************************************************************/
5
6#pragma once
7
8
9// ICF includes
11
12
13namespace ifile
14{
15
16
21{
22public:
23 explicit CFileArchiveInfo(const QString& filePath);
24
25 // reimplemented (ifile::IFileArchiveInfo)
26 virtual const QString& GetCurrentFilePath() const;
27
28protected:
29 QString m_filePath;
30};
31
32
33} // namespace ifile
34
35
Basic implementation of interface ifile::IFileArchiveInfo.
virtual const QString & GetCurrentFilePath() const
CFileArchiveInfo(const QString &filePath)
Simple informative interface allowing to get access to current processed file by file archives.
Contains interfaces and implementations of file system related components.

© Witold Gantzke and Kirill Lepskiy