Poco::XSD::Types

class Visitable

Library: XSD/Types
Package: Visitor
Header: Poco/XSD/Types/Visitable.h

Description

Interface class Visitable, used to implement visitor pattern.

Inheritance

Direct Base Classes: Poco::RefCountedObject

All Base Classes: Poco::RefCountedObject

Known Derived Classes: AbstractList, AnnotatedObject, AnyAttribute, Definitions, Documentation, AbstractAttributeGroup, AbstractElementImpl, AbstractGroup, AppInfo, Attribute, AttributeRef, AttributeTypeRef, Content, Element, PortType, AbstractAttribute, AttributeContent, Binding, GroupRef, List, Schema, SimpleRestriction, Type, All, Any, Notation, Operation, OrderContent, Union, AttributeGroup, CollectionContent, ElementImpl, ElementRef, ListTypeRef, Order, Service, SimpleRestrictionInlineType, ComplexType, Sequence, SimpleTypeInheritance, SimpleType, Annotation, AnnotationContent, AttributeGroupRef, Choice, ElementTypeRef, Group, Message, InheritanceInfo

Member Summary

Member Functions: accept, id

Inherited Functions: duplicate, referenceCount, release

Constructors

Visitable

Visitable();

Creates the Visitable.

Visitable

Visitable(
    const std::string & id
);

Creates the Visitable with the given ID.

Destructor

~Visitable virtual

virtual ~Visitable();

Destroys the Visitable.

Member Functions

accept virtual

virtual void accept(
    Visitor & v
) const = 0;

Implements the visitor pattern. Each subclass must implement it as v.visit(*this);

id inline

const std::string & id() const;

Returns the id of the object