mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 14:53:29 +08:00
12 lines
170 B
C++
12 lines
170 B
C++
#pragma once
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
struct IVisitable;
|
|
|
|
struct IMapping
|
|
{
|
|
virtual void Apply(IVisitable* visited) = 0;
|
|
virtual ~IMapping() {};
|
|
};
|
|
} |