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)
12 lines
323 B
C++
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
|