OpenLexocad  27.1
CoreVisitor.h
Go to the documentation of this file.
1 #pragma once
2 
3 
4 namespace Core
5 {
6 class DocObject;
7 class Property;
8 
10 {
11 public:
12  virtual void visit(Core::DocObject*) = 0;
13  virtual void visit(Core::Property*) = 0;
14 };
15 
16 } // namespace Core
virtual void visit(Core::DocObject *)=0
Definition: CoreVisitor.h:9
Definition: Base.h:12
Definition: Property.h:77
Definition: DocObject.h:51