diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-04-14 09:29:01 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-04-14 09:29:01 +0000 |
commit | 14efff8cac3612ae7340e1f3ad791418c941468d (patch) | |
tree | de79e9f7666664d23b554c202f75fae93b5fc165 /plugins/!NotAdopted/name_day/calendar/calendar.h | |
parent | 1e8ce03c8fe14ee1238e15c41391e1c7a5346d7c (diff) |
Add original sources for Name Day plugin from Tibor Szabo (not adopted)
git-svn-id: http://svn.miranda-ng.org/main/trunk@8969 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/name_day/calendar/calendar.h')
-rw-r--r-- | plugins/!NotAdopted/name_day/calendar/calendar.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/!NotAdopted/name_day/calendar/calendar.h b/plugins/!NotAdopted/name_day/calendar/calendar.h new file mode 100644 index 0000000000..fda275297f --- /dev/null +++ b/plugins/!NotAdopted/name_day/calendar/calendar.h @@ -0,0 +1,37 @@ +/** + * FIXME: + * + */ +#ifndef calendar_h +#define calendar_h + +#include <vector> +#include <string> +using namespace std; + +class calendar_t +{ + public: + calendar_t (const char *const *const static_names, const size_t names_count, const unsigned icon_id); + ~calendar_t (); + + const string &get_name (const unsigned day_in_year) const; + const string &get_name (const unsigned day, const unsigned month) const; + + unsigned get_day_in_year (const unsigned month, const unsigned day) const; + unsigned get_name_count (void) const; + + + + string country; + unsigned icon_id; + + private: + calendar_t () {}; + + vector<string> names; + +}; + + +#endif // calendar_h
\ No newline at end of file |