/* * PasteCommand.hpp * * Created on: 4 нояб. 2021 г. * Author: alexander */ #pragma once #include "Command.hpp" #include "Document.hpp" class PasteCommand: public Command { private: Document* _document; public: PasteCommand(Document*); virtual void Execute(); };