GM6000 Digital Heater Controller Branch: main
SDX-1330
DirList_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_DirList_x_h_
2#define Cpl_Io_File_DirList_x_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Io/File/Api.h"
16#include <windows.h>
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace File {
25
26
27
28/** This private concrete does the work for Api::walkDirectory() method
29 */
30class DirList_
31{
32protected:
33 /// internal variable
34 int m_depth;
35
36 /// internal variable
37 int m_curDepth;
38
39 /// internal variable
40 bool m_filesOnly;
41
42 /// internal variable
43 bool m_dirsOnly;
44
45 /// internal variable
46 Api::Info m_info;
47
48 /// internal variable
49 WIN32_FIND_DATA m_fdata;
50
51 /// internal variable
53
54 /// internal variable
56
57
58public:
59 /// Constructor
60 DirList_( const char* rootDir, int depth=1, bool filesOnly=false, bool dirsOnly=false );
61
62
63 /// Destructor
65
66
67public:
68 /// See Api::walkDirectory
69 bool traverse( Api::DirectoryWalker& callback );
70};
71
72
73}; // end namespaces
74};
75};
76#endif // end header latch
This abstract class defines the client interface for walking the contents of a directory,...
Definition Api.h:322
WIN32_FIND_DATA m_fdata
internal variable
Definition DirList_.h:49
int m_curDepth
internal variable
Definition DirList_.h:36
NameString m_file
internal variable
Definition DirList_.h:51
bool m_filesOnly
internal variable
Definition DirList_.h:39
Api::Info m_info
internal variable
Definition DirList_.h:45
bool traverse(Api::DirectoryWalker &callback)
See Api::walkDirectory.
NameString m_name
internal variable
Definition DirList_.h:48
int m_depth
internal variable
Definition DirList_.h:33
bool m_dirsOnly
internal variable
Definition DirList_.h:42
DirList_(const char *rootDir, int depth=1, bool filesOnly=false, bool dirsOnly=false)
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20