VAPOR3 3.9.4
CheckForNotices.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <functional>
5#include <vector>
6#include <QDateTime>
7
8struct Notice {
9 std::string url;
10 std::string content;
11
12 QDate date;
13 QDate until;
14};
15
18
19void CheckForGHNotices(std::function<void(const std::vector<Notice> &)> callback);
void CheckForGHNotices(std::function< void(const std::vector< Notice > &)> callback)
std::string content
QDate date
std::string url
QDate until