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
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace File {
24
25
26
27/** This private concrete does the work for Api::walkDirectory() method
28 */
30{
31protected:
32 /// internal variable
34
35 /// internal variable
37
38 /// internal variable
40
41 /// internal variable
43
44 /// internal variable
46
47 /// internal variable
49
50 /// internal variable
52
53
54public:
55 /// Constructor
56 DirList_( const char* rootDir, int depth=1, bool filesOnly=false, bool dirsOnly=false );
57
58
59 /// Destructor
61
62
63public:
64 /// See Api::walkDirectory
65 bool traverse( Api::DirectoryWalker& callback );
66};
67
68
69}; // end namespaces
70};
71};
72#endif // end header latch
This abstract class defines the client interface for walking the contents of a directory,...
Definition Api.h:322
This data structure defines status attributes for a file system entry.
Definition Api.h:241
This private concrete does the work for Api::walkDirectory() method.
Definition DirList_.h:30
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