]> git.saurik.com Git - apple/security.git/blame - Security/libsecurity_transform/lib/NullTransform.h
Security-57031.1.35.tar.gz
[apple/security.git] / Security / libsecurity_transform / lib / NullTransform.h
CommitLineData
b1ab9ed8
A
1#ifndef __NULL_TRANSFORM__
2#define __NULL_TRANSFORM__
3
4
5
6#include "Transform.h"
7#include "TransformFactory.h"
8
9
10
11class NullTransform : public Transform
12{
13protected:
14 std::string DebugDescription();
15 NullTransform();
16
17public:
18 static CFTypeRef Make();
19 static TransformFactory* MakeTransformFactory();
20
21 virtual void AttributeChanged(CFStringRef name, CFTypeRef value);
22};
23
24
25
26#endif