Bump version to 0.05
[www-quvi.git] / Video.cxx
blob86c20e6435a63a28b09cde555cc7105724d50e56
1 /* WWW::Quvi
2 * Copyright (C) 2010,2011 Toni Gundogdu <legatvs@gmail.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
20 #include <string>
22 #include "Quvi.h"
24 Video::Video () :ok (false) { }
26 Video::Video (quvi_video_t qv) :ok (true)
28 #define _wrap(id,dst,type) \
29 do { type t; quvi_getprop(qv,id,&t); dst=t; } while (0)
30 _wrap(QUVIPROP_HOSTID, host, char*);
31 _wrap(QUVIPROP_PAGEURL, url, char*);
32 _wrap(QUVIPROP_PAGETITLE, title, char*);
33 _wrap(QUVIPROP_VIDEOID, id, char*);
34 _wrap(QUVIPROP_STARTTIME, start_time, char*);
35 #undef _wrap
36 link = Link (qv);
37 quvi_parse_close (&qv);
40 Video::Video (const Video& v) :ok (false)
42 _swap (v);
45 Video&
46 Video::operator=(const Video& v)
48 if (this != &v) _swap (v);
49 return *this;
52 Video::~Video () { }
54 void
55 Video::_swap (const Video& v)
57 title = v.title;
58 host = v.host;
59 url = v.url;
60 id = v.id;
61 link = v.link;
62 ok = v.ok;
63 start_time = v.start_time;
66 // vim: set ts=2 sw=2 tw=72 expandtab: