aboutsummaryrefslogtreecommitdiff
path: root/Src/nde/osx/FilenameField.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/nde/osx/FilenameField.h')
-rw-r--r--Src/nde/osx/FilenameField.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Src/nde/osx/FilenameField.h b/Src/nde/osx/FilenameField.h
new file mode 100644
index 00000000..56553329
--- /dev/null
+++ b/Src/nde/osx/FilenameField.h
@@ -0,0 +1,23 @@
+#ifndef NDE_FILENAMEFIELD_H
+#define NDE_FILENAMEFIELD_H
+
+/*
+ Mostly the same as StringField
+ but this implements OS-dependent string comparisons that make sense for the file system
+*/
+
+#include "nde.h"
+#include "NDEString.h"
+
+class FilenameField : public StringField
+{
+protected:
+ virtual int Compare(Field *Entry);
+ virtual Field *Clone(Table *pTable);
+
+public:
+ FilenameField(CFStringRef Str);
+ FilenameField();
+};
+
+#endif \ No newline at end of file