Files
ma/src/client_backend/local_schedule.h
jakani24 a7e323618c added logger
triing to add logger and some queue features (main loop can send and retrieve items form queue based on schedule and communication with dekstop interface)
2023-12-23 20:15:44 +01:00

12 lines
323 B
C++

#pragma once
#ifndef LOCAL_SCHEDULE_H
#define LOCAL_SCHEDULE_H
#include <iostream>
#include <ctime>
#include <sstream>
#include <vector>
#include <map>
#include <algorithm>
int check_for_sched_tasks(const char* sched_name, const char* sched_path);
void unlock_task(const std::string& task_name);
#endif // !LOCAL_SCHEDULE_H