/* * PasteCommand.cpp * * Created on: 4 нояб. 2021 г. * Author: alexander */ #include "PasteCommand.hpp" PasteCommand::PasteCommand(Document *doc) : _document(doc) { } void PasteCommand::Execute() { _document->Paste(); }