CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
xml_schema_app_info.h
1
2
3#pragma once
4
5#include <xml/schema/xml_schema_object.h>
6#include <system/array.h>
7
8
10namespace System
11{
12namespace Xml
13{
14class XmlNode;
15} // namespace Xml
16} // namespace System
18
19namespace System {
20
21namespace Xml {
22
23namespace Schema {
24
29class ASPOSECPP_SHARED_CLASS XmlSchemaAppInfo : public XmlSchemaObject
30{
33
34 typedef ::System::BaseTypesInfo<BaseType> ThisTypeBaseTypesInfo;
35 ASPOSECPP_SHARED_RTTI_INFO_DECL();
36
37public:
38
41
42public:
43
46 ASPOSECPP_SHARED_API String get_Source();
49 ASPOSECPP_SHARED_API void set_Source(const String& value);
52 ASPOSECPP_SHARED_API ArrayPtr<SharedPtr<XmlNode>> get_Markup();
55 ASPOSECPP_SHARED_API void set_Markup(const ArrayPtr<SharedPtr<XmlNode>>& value);
56
57protected:
58
60 #ifdef ASPOSE_GET_SHARED_MEMBERS
61 ASPOSECPP_SHARED_API void GetSharedMembers(System::Object::shared_members_type& result) const override;
62 #endif
63
64 #ifdef __DBG_FOR_EACH_MEMBER
65public:
68 ASPOSECPP_SHARED_API void DBG_for_each_member(DBG::for_each_member_visitor& visitor) const override;
71 const char* DBG_class_name() const override { return "XmlSchemaAppInfo"; }
72#endif
74
75private:
76
77 String _source;
79
80 ThisType* CppMemberwiseClone() const override { return new ThisType(*this); }
81
82};
83
84} // namespace Schema
85} // namespace Xml
86} // namespace System
87
88
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
Represents the World Wide Web Consortium (W3C) appinfo element.
Definition: xml_schema_app_info.h:30
void set_Source(const String &value)
Sets the source of the application information.
ArrayPtr< SharedPtr< XmlNode > > get_Markup()
Returns an array of XmlNode objects that represents the appinfo child nodes.
void set_Markup(const ArrayPtr< SharedPtr< XmlNode > > &value)
Sets an array of XmlNode objects that represents the appinfo child nodes.
String get_Source()
Returns the source of the application information.
Represents the root class for the Xml schema object model hierarchy and serves as a base class for cl...
Definition: xml_schema_object.h:47
@ Schema
Validate according to XML Schema definition language (XSD) schemas, including inline XML Schemas....
@ Xml
Serialize according to the XML 1.0 rules.
Definition: db_command.h:9