~ubuntu-branches/ubuntu/karmic/me-tv/karmic

« back to all changes in this revision

Viewing changes to src/dvb_adapter.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Lamothe
  • Date: 2007-12-19 23:30:16 UTC
  • Revision ID: james.westby@ubuntu.com-20071219233016-2ng2clfh00xtlevc
Tags: upstream-0.4.19
ImportĀ upstreamĀ versionĀ 0.4.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007 Michael Lamothe
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 * 
 
9
 * This program 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
 
12
 * GNU Library General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
 
17
 */
 
18
 
 
19
#ifndef __DVB_ADAPTER_H__
 
20
#define __DVB_ADAPTER_H__
 
21
 
 
22
#include "string_utility.h"
 
23
 
 
24
class DvbAdapter
 
25
{
 
26
        private:
 
27
                int card;
 
28
        
 
29
                Glib::ustring get_adapter_path()
 
30
                {
 
31
                        return StringUtility::format("/dev/dvb/adapter%d", card);
 
32
                }
 
33
                
 
34
        public:
 
35
                DvbAdapter(int card)
 
36
                {
 
37
                        this->card = card;
 
38
                }
 
39
 
 
40
                Glib::ustring get_dvr_device_path()
 
41
                {
 
42
                        return get_adapter_path() + "/dvr0";
 
43
                }
 
44
 
 
45
                Glib::ustring get_demuxer_device_path()
 
46
                {
 
47
                        return get_adapter_path() + "/demux0";
 
48
                }
 
49
 
 
50
                Glib::ustring get_tuner_device_path()
 
51
                {
 
52
                        return get_adapter_path() + "/frontend0";
 
53
                }
 
54
};
 
55
 
 
56
#endif