MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / Attributes

Class Attributes

MonaBase/include/Mona/FileSystem.h:54–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 };
53
54 class Attributes : public virtual NullableObject {
55 public:
56 Attributes() : size(0), lastModified(0) {}
57 Time lastModified;
58 UInt32 size;
59 operator bool() const { return lastModified ? true : false; }
60 Attributes& reset() { lastModified = 0; size = 0; return *this; }
61 };
62
63
64 typedef std::function<void(const std::string&, UInt16 level)> ForEach; /// FileSystem::ListDir function type handler

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected