]> git.saurik.com Git - apple/security.git/blobdiff - Security/libsecurity_transform/lib/NullTransform.h
Security-57031.1.35.tar.gz
[apple/security.git] / Security / libsecurity_transform / lib / NullTransform.h
diff --git a/Security/libsecurity_transform/lib/NullTransform.h b/Security/libsecurity_transform/lib/NullTransform.h
new file mode 100644 (file)
index 0000000..44afcf2
--- /dev/null
@@ -0,0 +1,26 @@
+#ifndef __NULL_TRANSFORM__
+#define __NULL_TRANSFORM__
+
+
+
+#include "Transform.h"
+#include "TransformFactory.h"
+
+
+
+class NullTransform : public Transform
+{
+protected:
+       std::string DebugDescription();
+       NullTransform();
+
+public:
+       static CFTypeRef Make();
+       static TransformFactory* MakeTransformFactory();
+       
+       virtual void AttributeChanged(CFStringRef name, CFTypeRef value);
+};
+
+
+
+#endif