HatchKeeper  0.90
The Free Open-Source Egg Incubation Software
Notifications.h
Go to the documentation of this file.
1 /*******************************************************************/
8 #ifndef _NOTIFICATION_H__
9 #define _NOTIFICATION_H__
10 
11 #include "Storage.h"
12 #include "Batches.h"
13 #include <vector>
14 
22 {
23  public:
24  string AddNotification(string Name, HK_Date Date, string Message);
25  vector<string> CheckDates(HK_Batches Batches, HK_Storage Reminders);
26 };
27 #endif
Declare HK_Batches Class Methods.
HK_Batches Batches
Definition: Declare.h:44
A Class For Managing Mulitple HK_Batch Objects.
Definition: Batches.h:22
A Class For Managing Dates.
Definition: Date.h:25
Class For Managing Notifications In Database.
Definition: Notifications.h:22
string AddNotification(string Name, HK_Date Date, string Message)
Returns A SQL Statment For Adding Notification To Database.
vector< string > CheckDates(HK_Batches Batches, HK_Storage Reminders)
Checks The HK_Batches and HK_Storage Objects For New Notifications.
A Class For Storing Values.
Definition: Storage.h:26