mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
22 lines
285 B
C++
22 lines
285 B
C++
#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
|