We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c35f2f commit 86335adCopy full SHA for 86335ad
libs/openFrameworks/utils/ofFilesystem.h
@@ -9,6 +9,11 @@
9
namespace of {
10
namespace filesystem {
11
12
+// general approach to return type:
13
+// - use `path` and path &` to wrap std:: return values
14
+// - use bool when bool (for self-documenting API)
15
+// - use (const) auto (inheriting from std:: implementation) for others
16
+
17
class path {
18
private:
19
std::filesystem::path path_; // simple composition
0 commit comments