Rudiments
cronschedule.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4#ifndef RUDIMENTS_CRONSCHEDULE_H
5#define RUDIMENTS_CRONSCHEDULE_H
6
7#include <rudiments/private/cronscheduleincludes.h>
8
12class RUDIMENTS_DLLSPEC cronschedule : virtual public object {
13 public:
16
19
68 bool setSchedule(const char *when);
69
112 bool setSchedule(const char *years,
113 const char *months,
114 const char *daysofmonth,
115 const char *daysofweek,
116 const char *dayparts);
117
121
124 bool isInSchedule(const char *dt);
125
130 bool clear();
131
132 #include <rudiments/private/cronschedule.h>
133};
134
135#endif
Definition cronschedule.h:12
bool setSchedule(const char *when)
bool setSchedule(const char *years, const char *months, const char *daysofmonth, const char *daysofweek, const char *dayparts)
bool isInSchedule(const char *dt)
bool isInSchedule(datetime *dt)
Definition datetime.h:12
Definition object.h:10