2018-05-12 16:03:00 +00:00
|
|
|
/*
|
2007-08-10 19:53:44 +00:00
|
|
|
*
|
2007-06-01 15:49:49 +00:00
|
|
|
* Copyright (c) 2007 Mikko Sysikaski <mikko.sysikaski@gmail.com>
|
2008-02-20 20:30:45 +00:00
|
|
|
* Toni Spets <toni.spets@gmail.com>
|
2007-06-01 15:49:49 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
2008-02-20 20:30:45 +00:00
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
2007-06-01 15:49:49 +00:00
|
|
|
|
2007-06-01 10:42:57 +00:00
|
|
|
#ifndef PRSS_H
|
|
|
|
#define PRSS_H
|
|
|
|
|
|
|
|
#include <libxml/parser.h>
|
2018-05-13 17:33:18 +00:00
|
|
|
#include <string>
|
2007-06-01 10:42:57 +00:00
|
|
|
|
|
|
|
typedef struct PRSS_Item_ {
|
2018-05-12 16:03:00 +00:00
|
|
|
char *title;
|
|
|
|
char *link;
|
|
|
|
char *description;
|
|
|
|
char *category;
|
|
|
|
char *pubDate;
|
|
|
|
char *guid;
|
2007-06-01 10:42:57 +00:00
|
|
|
} PRSS_Item;
|
|
|
|
|
2018-05-13 17:33:18 +00:00
|
|
|
class PRSS {
|
|
|
|
public:
|
2018-05-12 16:03:00 +00:00
|
|
|
char *version;
|
|
|
|
|
|
|
|
char *title;
|
|
|
|
char *link;
|
|
|
|
char *description;
|
|
|
|
char *language;
|
|
|
|
char *generator;
|
|
|
|
char *managingEditor;
|
|
|
|
char *webMaster;
|
|
|
|
char *docs;
|
|
|
|
char *lastBuildDate;
|
|
|
|
char *pubDate;
|
|
|
|
char *copyright;
|
|
|
|
char *ttl;
|
|
|
|
|
|
|
|
PRSS_Item *items;
|
|
|
|
int item_count;
|
|
|
|
|
2018-05-13 17:33:18 +00:00
|
|
|
explicit PRSS(const std::string &xml_data);
|
2018-05-12 16:03:00 +00:00
|
|
|
~PRSS();
|
2011-02-15 23:33:22 +00:00
|
|
|
};
|
2007-06-01 10:42:57 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
#endif /* PRSS_H */
|