diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-02 04:28:45 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-02 04:28:45 +0100 |
commit | 7e64154d3fdbdebc31addbcd11000c98acb36536 (patch) | |
tree | 3a04d96a864fed3b969dc3c2167cd86242250079 /Editor/InsertOperation.h | |
parent | 76f53b40f4f80fc692f90d3397516ae96872d966 (diff) | |
download | serenity-7e64154d3fdbdebc31addbcd11000c98acb36536.zip |
Remove Editor/ since I wasn't maintaining or trying to develop it.
Diffstat (limited to 'Editor/InsertOperation.h')
-rw-r--r-- | Editor/InsertOperation.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Editor/InsertOperation.h b/Editor/InsertOperation.h deleted file mode 100644 index 97096ed312..0000000000 --- a/Editor/InsertOperation.h +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -#include "Operation.h" -#include <string> - -class InsertOperation final : public Operation { -public: - explicit InsertOperation(const std::string&); - explicit InsertOperation(char); - ~InsertOperation(); - - virtual bool apply(Editor&) override; - virtual bool unapply(Editor&) override; - -private: - std::string m_text; -}; |