consolidate all repos to one for archive

This commit is contained in:
2025-01-28 13:46:42 +01:00
commit a6610fbc7a
5350 changed files with 2705721 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// Created by Nik on 09/06/2022.
//
#ifndef PRIRAVA_2_MESSAGE_H
#define PRIRAVA_2_MESSAGE_H
#include <string>
class Message{
protected:
int time;
std::string text;
public:
Message(int time, std::string text): text(text) {
if (time < 1 or time > 90) throw WrongTimeException();
};
virtual std::string toString() const{
return std::to_string(time) + text + "\n";
};
};
#endif //PRIRAVA_2_MESSAGE_H