Fission FSN
Loading...
Searching...
No Matches
fsCFileListEntry.h
Go to the documentation of this file.
1/********************************************************************
2*
3* Created: 19/2/2014 14:05
4*
5* File: fsCFileListEntry.h
6*
7* Author: Mick Waites
8*
9* Purpose: File systen entry
10*
11*********************************************************************/
12
13#ifndef fsCFileListEntryhdr
14#define fsCFileListEntryhdr
15
16#include "../fsStr.h"
17
18
20{
21public:
22
23 const fsStr& pathGet() const;
24 const fsStr& nameGet() const;
25 fsBool isFolderGet() const;
26
27 fsCFileListEntry(const fsStr& pPath, const fsStr& pName, fsBool pFolder);
28 virtual ~fsCFileListEntry();
29
30protected:
31
35
36private:
37};
38
39#endif
fsStr mPath
Definition fsCFileListEntry.h:32
fsStr mName
Definition fsCFileListEntry.h:33
const fsStr & pathGet() const
Definition fsCFileListEntry.cpp:4
virtual ~fsCFileListEntry()
Definition fsCFileListEntry.cpp:26
fsBool isFolderGet() const
Definition fsCFileListEntry.cpp:14
fsCFileListEntry(const fsStr &pPath, const fsStr &pName, fsBool pFolder)
Definition fsCFileListEntry.cpp:19
fsBool mIsFolder
Definition fsCFileListEntry.h:34
const fsStr & nameGet() const
Definition fsCFileListEntry.cpp:9
Definition fsStr.h:23
bool fsBool
Definition fsBaseTypes.h:26