📄 debug_dtd_manager.h
字号:
// -*- C++ -*-
//=============================================================================
/**
* @file Debug_DTD_Manager.h
*
* Debug_DTD_Manager.h,v 1.6 2003/07/19 19:04:10 dhinton Exp
*
* @author Nanbor Wang <nanbor@cs.wustl.edu>
*/
//=============================================================================
#ifndef _ACEXML_DEBUG_DTD_Manager_H_
#define _ACEXML_DEBUG_DTD_Manager_H_
#include /**/ "ace/pre.h"
#include "ACEXML/parser/debug_validator/Debug_DTD_Manager_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ACEXML/common/DTD_Manager.h"
class ACEXML_DEBUG_DTD_MANAGER_Export ACEXML_Debug_DTD_Manager : public ACEXML_DTD_Manager
{
public:
ACEXML_Debug_DTD_Manager ();
virtual ~ACEXML_Debug_DTD_Manager ();
/**
* Acquire a pointer to an element definition builder. The XML parser use
* this interface to acquire the definition builder and use the builder
* to create the DTD element definition. The resulting builder is then
* registered with the DTD Manager or destroyed if error occured when the
* builder encountered errors.
*
* @retval 0 if error occurs creating the builder.
*/
virtual ACEXML_Element_Def_Builder *getElement_Def_Builder ();
/**
* Insert a new element definition into the DTD Manager.
*
* @retval 0 if success, -1 if error.
*/
virtual int insertElement_Definition (ACEXML_Element_Def_Builder *def ACEXML_ENV_ARG_DECL);
/**
* Acquire a pointer to an attributes definition builder.
*
*/
virtual ACEXML_Attributes_Def_Builder *getAttribute_Def_Builder ();
/**
* Insert a new attributes definition into the DTD Manager.
*
* @retval 0 if success, -1 otherwise.
*/
virtual int insertAttributes_Definition (ACEXML_Attributes_Def_Builder *def ACEXML_ENV_ARG_DECL);
/**
* Acquire an element validator to validate an XML element.
*
* @todo I haven't figured out what memory management scheme
* we should use for the acquired validator.
*/
virtual ACEXML_Validator *getValidator (const ACEXML_Char *namespaceURI,
const ACEXML_Char *localName,
const ACEXML_Char *qName ACEXML_ENV_ARG_DECL);
};
#include /**/ "ace/post.h"
#endif /* _ACEXML_DTD_Manager_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -