Skip to content

Instantly share code, notes, and snippets.

@michaelgautier
Created December 2, 2017 19:01
Show Gist options
  • Save michaelgautier/51d0de7448699aa920e40518d55b827a to your computer and use it in GitHub Desktop.
Save michaelgautier/51d0de7448699aa920e40518d55b827a to your computer and use it in GitHub Desktop.
RSS Reader UI 12/02/2017
/*
Copyright 2017 Michael Gautier
This file is part of Gautier RSS System by Michael Gautier.
Gautier RSS System by Michael Gautier is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Gautier RSS System by Michael Gautier is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Gautier RSS System by Michael Gautier. If not, see <http://www.gnu.org/licenses/>.
Portions of the POCO C++ Libraries utilize the following copyrighted material, the use of which is hereby acknowledged.
POCO C++ Libraries released under the Boost Software License; Copyright 2017, Applied Informatics Software Engineering GmbH and Contributors;
C++ Standard Library; Copyright 2017 Standard C++ Foundation.
*/
#include "mainscreengenerator.hxx"
#include "material.hxx"
#include "request.hxx"
#include "collector.hxx"
using material = rss::material;
using request = rss::request;
using collector = rss::collector;
using namespace std;
int main() {
rss::ui::mainscreengenerator generator;
generator.generate();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment