mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 02:37:46 +08:00
16 lines
217 B
C++
16 lines
217 B
C++
#pragma once
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class IVisitable;
|
|
|
|
class IMapping
|
|
{
|
|
public:
|
|
virtual void Apply(IVisitable* visited) = 0;
|
|
virtual ~IMapping()
|
|
{
|
|
}
|
|
};
|
|
}
|