mirror of https://github.com/PatrickLipka/tt.git
15 lines
222 B
C
15 lines
222 B
C
|
#ifndef TASK_H
|
||
|
#define TASK_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <algorithm>
|
||
|
|
||
|
class Task{
|
||
|
public:
|
||
|
Task(std::string name);
|
||
|
std::string name;
|
||
|
int work_time;
|
||
|
void add_time(int seconds);
|
||
|
};
|
||
|
#endif
|