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/Document.hpp

33 lines
541 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Document.hpp
*
* Created on: 4 нояб. 2021 г.
* Author: alexander
*/
#pragma once
#include <iostream>
class Document
{
private:
std::string _name;
public:
Document(const std::string name) : _name(name)
{
}
void Open()
{
std::cout << "Документ " << _name << " открыт!" << std::endl;
}
void Paste()
{
std::cout << "Вставлено в документ " << _name << std::endl;
}
std::string getName() const
{
return _name;
}
};