1
// =================================
2
// Copyright (c) 2024 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
using
System
;
7
8
namespace
System
.
Xml
9
{
10
public
abstract
class
NodeOperation
11
{
12
public
virtual
default
~
NodeOperation
(
)
;
13
public
abstract
void
Apply
(
Node
*
node
)
;
14
}
15
}