Rudiments
cronschedule.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
5 cronschedule &operator=(cronschedule &c) { return *this; };
6
7 private:
8 bool splitTimePart(
10 const char *timepartlist,
11 int64_t min, int64_t max);
12 bool splitDayParts(const char *daypartlist);
13 bool isInPeriods(
15 int32_t timepart);
16 bool isInDayParts(int32_t hour, int32_t minute);
17
18 cronscheduleprivate *pvt;
Definition cronschedule.h:12
Definition linkedlist.h:47