CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
transform_chain.h
1#pragma once
2
3#include <system/type_info.h>
4#include <system/shared_ptr.h>
5#include <system/object.h>
6#include <system/collections/ienumerator.h>
7#include <cstdint>
8
9namespace System { namespace Security { namespace Cryptography { namespace Xml { class CipherReference; } } } }
10namespace System { namespace Security { namespace Cryptography { namespace Xml { class EncryptedReference; } } } }
11namespace System { namespace Security { namespace Cryptography { namespace Xml { class Reference; } } } }
12namespace System { namespace Security { namespace Cryptography { namespace Xml { class Transform; } } } }
13
14namespace System { namespace Security { namespace Cryptography { namespace Xml {
15
16namespace Details { struct ReferenceImpl; }
17namespace Details { struct TransformChainImpl; }
18
23class ASPOSECPP_SHARED_CLASS TransformChain : public Object
24{
26 typedef Object BaseType;
27
28 typedef BaseTypesInfo<BaseType> ThisTypeBaseTypesInfo;
29 ASPOSECPP_SHARED_RTTI_INFO_DECL();
30
31 friend class CipherReference;
32 friend class EncryptedReference;
33 friend class Reference;
34 friend struct Details::ReferenceImpl;
35
36public:
37 ASPOSECPP_SHARED_API int32_t get_Count();
38
39 ASPOSECPP_SHARED_API TransformChain();
40
41 ASPOSECPP_SHARED_API void Add(SharedPtr<Transform> transform);
43
44 ASPOSECPP_SHARED_API SharedPtr<Transform> idx_get(int32_t index);
45
46protected:
47#ifdef ASPOSE_GET_SHARED_MEMBERS
48 ASPOSECPP_SHARED_API void GetSharedMembers(System::Object::shared_members_type& result) const override;
49#endif
50
51private:
52 const std::unique_ptr<Details::TransformChainImpl> m_impl;
53};
54
55}}}} // System::Security::Cryptography::Xml
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
Facilitates creation of the XML signatures. Objects of this class should only be allocated using Syst...
Definition: reference.h:27
Represents an ordered chain of transforms. Objects of this class should only be allocated using Syste...
Definition: transform_chain.h:24
SharedPtr< Collections::Generic::IEnumerator< SharedPtr< Transform > > > GetEnumerator()
SharedPtr< Transform > idx_get(int32_t index)
void Add(SharedPtr< Transform > transform)
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9