Initial commit

This commit is contained in:
2026-06-12 23:18:12 +08:00
commit 424bde1b02
249 changed files with 40338 additions and 0 deletions
+103
View File
@@ -0,0 +1,103 @@
// CodeGear C++Builder
// Copyright (c) 1995, 2025 by Embarcadero Technologies, Inc.
// All rights reserved
// (DO NOT EDIT: machine generated header) 'uCEFXmlReader.pas' rev: 37.00 (Windows)
#ifndef uCEFXmlReaderHPP
#define uCEFXmlReaderHPP
#pragma delphiheader begin
#pragma option push
#if defined(__BORLANDC__) && !defined(__clang__)
#pragma option -w- // All warnings off
#pragma option -Vx // Zero-length empty class member
#endif
#pragma pack(push,8)
#include <System.hpp>
#include <SysInit.hpp>
#include <uCEFBaseRefCounted.hpp>
#include <uCEFInterfaces.hpp>
#include <uCEFTypes.hpp>
//-- user supplied -----------------------------------------------------------
namespace Ucefxmlreader
{
//-- forward type declarations -----------------------------------------------
class DELPHICLASS TCefXmlReaderRef;
//-- type declarations -------------------------------------------------------
#pragma pack(push,4)
class PASCALIMPLEMENTATION TCefXmlReaderRef : public Ucefbaserefcounted::TCefBaseRefCountedRef
{
typedef Ucefbaserefcounted::TCefBaseRefCountedRef inherited;
protected:
bool __fastcall MoveToNextNode();
bool __fastcall Close();
bool __fastcall HasError();
Uceftypes::ustring __fastcall GetError();
Uceftypes::TCefXmlNodeType __fastcall GetType();
int __fastcall GetDepth();
Uceftypes::ustring __fastcall GetLocalName();
Uceftypes::ustring __fastcall GetPrefix();
Uceftypes::ustring __fastcall GetQualifiedName();
Uceftypes::ustring __fastcall GetNamespaceUri();
Uceftypes::ustring __fastcall GetBaseUri();
Uceftypes::ustring __fastcall GetXmlLang();
bool __fastcall IsEmptyElement();
bool __fastcall HasValue();
Uceftypes::ustring __fastcall GetValue();
bool __fastcall HasAttributes();
System::NativeUInt __fastcall GetAttributeCount();
Uceftypes::ustring __fastcall GetAttributeByIndex(int index);
Uceftypes::ustring __fastcall GetAttributeByQName(const Uceftypes::ustring qualifiedName);
Uceftypes::ustring __fastcall GetAttributeByLName(const Uceftypes::ustring localName, const Uceftypes::ustring namespaceURI);
Uceftypes::ustring __fastcall GetInnerXml();
Uceftypes::ustring __fastcall GetOuterXml();
int __fastcall GetLineNumber();
bool __fastcall MoveToAttributeByIndex(int index);
bool __fastcall MoveToAttributeByQName(const Uceftypes::ustring qualifiedName);
bool __fastcall MoveToAttributeByLName(const Uceftypes::ustring localName, const Uceftypes::ustring namespaceURI);
bool __fastcall MoveToFirstAttribute();
bool __fastcall MoveToNextAttribute();
bool __fastcall MoveToCarryingElement();
public:
__classmethod Ucefinterfaces::_di_ICefXmlReader __fastcall UnWrap(void * data);
__classmethod Ucefinterfaces::_di_ICefXmlReader __fastcall New(const Ucefinterfaces::_di_ICefStreamReader stream, Uceftypes::TCefXmlEncodingType encodingType, const Uceftypes::ustring URI);
public:
/* TCefBaseRefCountedRef.Create */ inline __fastcall virtual TCefXmlReaderRef(void * data) : Ucefbaserefcounted::TCefBaseRefCountedRef(data) { }
/* TCefBaseRefCountedRef.Destroy */ inline __fastcall virtual ~TCefXmlReaderRef() { }
private:
void *__ICefXmlReader; // Ucefinterfaces::ICefXmlReader
public:
#if defined(MANAGED_INTERFACE_OPERATORS)
// {0DE686C3-A8D7-45D2-82FD-92F7F4E62A90}
operator Ucefinterfaces::_di_ICefXmlReader()
{
Ucefinterfaces::_di_ICefXmlReader intf;
this->GetInterface(intf);
return intf;
}
#else
operator Ucefinterfaces::ICefXmlReader*(void) { return (Ucefinterfaces::ICefXmlReader*)&__ICefXmlReader; }
#endif
};
#pragma pack(pop)
//-- var, const, procedure ---------------------------------------------------
} /* namespace Ucefxmlreader */
#if !defined(DELPHIHEADER_NO_IMPLICIT_NAMESPACE_USE) && !defined(NO_USING_NAMESPACE_UCEFXMLREADER)
using namespace Ucefxmlreader;
#endif
#pragma pack(pop)
#pragma option pop
#pragma delphiheader end.
//-- end unit ----------------------------------------------------------------
#endif // uCEFXmlReaderHPP