mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 17:12:55 +02:00
15 lines
190 B
C++
15 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();
|
|
};
|