mirror of
https://github.com/RGBCube/serenity
synced 2026-01-13 19:11:00 +00:00
14 lines
190 B
C++
14 lines
190 B
C++
#pragma once
|
|
|
|
class Editor;
|
|
|
|
class Operation {
|
|
public:
|
|
virtual ~Operation();
|
|
|
|
virtual bool apply(Editor&) = 0;
|
|
virtual bool unapply(Editor&) = 0;
|
|
|
|
protected:
|
|
Operation();
|
|
};
|