This repository has been archived on 2022-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
patterns-old/lesson_6/PasteCommand.cpp

18 lines
244 B
C++
Raw Normal View History

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