Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'windirstat/options.h')
-rw-r--r--windirstat/options.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/windirstat/options.h b/windirstat/options.h
index c6bd2f0..db33886 100644
--- a/windirstat/options.h
+++ b/windirstat/options.h
@@ -351,6 +351,10 @@ public:
bool IsUseWdsLocale();
void SetUseWdsLocale(bool use);
+ // Option to ignore hidden files and folders
+ bool IsSkipHidden();
+ void SetSkipHidden(bool skip);
+
void GetUserDefinedCleanups(USERDEFINEDCLEANUP udc[USERDEFINEDCLEANUPCOUNT]);
void SetUserDefinedCleanups(const USERDEFINEDCLEANUP udc[USERDEFINEDCLEANUPCOUNT]);
@@ -391,6 +395,7 @@ private:
bool m_followMountPoints;
bool m_followJunctionPoints;
bool m_useWdsLocale;
+ bool m_skipHidden;
USERDEFINEDCLEANUP m_userDefinedCleanup[USERDEFINEDCLEANUPCOUNT];