22 lines
289 B
C++
22 lines
289 B
C++
|
#include "ScreenWriter.h"
|
||
|
#include <sstream>
|
||
|
#include <iostream>
|
||
|
#include <fstream>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <time.h>
|
||
|
using namespace std;
|
||
|
|
||
|
|
||
|
//public
|
||
|
|
||
|
|
||
|
|
||
|
void ScreenWriter::write(string message)
|
||
|
{
|
||
|
cout << message << endl;
|
||
|
}
|
||
|
|