добавление наработок

This commit is contained in:
Dmitry Borisenko
2022-08-25 17:33:07 +02:00
parent 6822bdf532
commit a4b7eb00d7
15 changed files with 360 additions and 176 deletions

21
training/QueueInst.h Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "Global.h"
#ifdef QUEUE_FROM_INST
#include <queue>
#include <iostream>
using namespace std;
class QueueInstance;
class QueueInstance {
public:
QueueInstance(String text);
~QueueInstance();
String get();
private:
String _text;
};
#endif