~ubuntu-branches/ubuntu/wily/me-tv/wily

« back to all changes in this revision

Viewing changes to src/channel.h

  • Committer: Bazaar Package Importer
  • Author(s): Teis Dreijer, Teis Dreijer, Julian Andres Klode
  • Date: 2009-12-06 11:49:53 UTC
  • mfrom: (1.1.9 upstream) (3.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20091206114953-7agz1kws9au11tww
Tags: 1.0.2-1
[ Teis Dreijer ]
* New upstream release

[ Julian Andres Klode ]
* Delete me-tv.schemas in the clean target (see upstream bug LP #493132).

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef __CHANNEL_H__
22
22
#define __CHANNEL_H__
23
23
 
24
 
#include <linux/dvb/frontend.h>
25
24
#include "epg_events.h"
26
25
#include "dvb_transponder.h"
27
 
 
28
 
#define CHANNEL_FLAG_NONE               0
29
 
#define CHANNEL_FLAG_DVB_T              0x01
30
 
#define CHANNEL_FLAG_DVB_C              0x02
31
 
#define CHANNEL_FLAG_DVB_S              0x04
32
 
#define CHANNEL_FLAG_ATSC               0x08
 
26
#include <linux/dvb/frontend.h>
33
27
 
34
28
class Channel
35
29
{
38
32
 
39
33
        guint                   channel_id;
40
34
        Glib::ustring   name;
41
 
        guint                   flags;
 
35
        guint                   type;
42
36
        guint                   sort_order;
43
37
        Glib::ustring   mrl;
44
38
        EpgEvents               epg_events;