forked from jaredtao/DesignPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrinter.h
39 lines (37 loc) · 842 Bytes
/
Printer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
#include "Printable.h"
#include <chrono>
#include <iostream>
#include <thread>
class Printer : public Printable
{
public:
Printer(const std::string &name) : m_name(name)
{
heavyJob();
}
virtual void setPrinterName(const std::string &name) override
{
m_name = name;
}
virtual const std::string &getPrinterName() const
{
return m_name;
}
void print() override
{
std::cout << __FUNCTION__ << getPrinterName() << std::endl;
}
private:
void heavyJob()
{
std::cout << __FUNCTION__ << " start " << std::endl;
for (int i = 0; i < 5; ++i)
{
std::this_thread::sleep_for(std::chrono::milliseconds(300));
}
std::cout << __FUNCTION__ << " end " << std::endl;
}
private:
std::string m_name;
};