OSDN Git Service

Update TranslationsStatus.*
[winmerge-jp/winmerge-jp.git] / Src / FileFlags.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /** 
3  * @file  FileFlags.h
4  *
5  * @brief Declaration file for FileFlags
6  */
7 #pragma once
8
9 #include "UnicodeString.h"
10
11 /**
12  * @brief Class for fileflags.
13  */
14 struct FileFlags
15 {
16         unsigned attributes; /**< Fileattributes for item */
17         FileFlags() : attributes(0) { }
18         void reset() { attributes = 0; } /// Reset fileattributes
19         String ToString() const;
20 };
21