~ubuntu-branches/ubuntu/precise/sflphone/precise

« back to all changes in this revision

Viewing changes to kde/src/Codec.h

  • Committer: Package Import Robot
  • Author(s): Whoopie
  • Date: 2012-03-22 10:29:10 UTC
  • mfrom: (4.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120322102910-tb8hugi2su1tguwh
Tags: 1.0.2-1ubuntu1
* Apply some upstream patches to fix FTBFS (LP: #913018):
  - debian/patches/05_glib_includes.patch: fix glib includes.
  - debian/patches/06_use_XkbKeycodeToKeysym.patch: use 
    XkbKeycodeToKeysym instead of (deprecated) XKeycodeToKeysym.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009-2012 by Savoir-Faire Linux                         *
 
3
 *   Author : Jérémy Quentin <jeremy.quentin@savoirfairelinux.com>         *
 
4
 *            Emmanuel Lepage Vallee <emmanuel.lepage@savoirfairelinux.com>*
 
5
 *                                                                         *
 
6
 *   This program is free software; you can redistribute it and/or modify  *
 
7
 *   it under the terms of the GNU General Public License as published by  *
 
8
 *   the Free Software Foundation; either version 3 of the License, or     *
 
9
 *   (at your option) any later version.                                   *
 
10
 *                                                                         *
 
11
 *   This program is distributed in the hope that it will be useful,       *
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
14
 *   GNU General Public License for more details.                          *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU General Public License     *
 
17
 *   along with this program; if not, write to the                         *
 
18
 *   Free Software Foundation, Inc.,                                       *
 
19
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
20
 **************************************************************************/
 
21
#ifndef CODEC_H
 
22
#define CODEC_H
 
23
 
 
24
#include <QObject>
 
25
 
 
26
//Qt
 
27
class QString;
 
28
 
 
29
///@class Codec A SIP codec
 
30
class Codec : public QObject
 
31
{
 
32
Q_OBJECT
 
33
 
 
34
public:
 
35
   Codec(int payload, bool enabled);
 
36
 
 
37
   //Getters
 
38
   const QString& getPayload   () const;
 
39
   const QString& getName      () const;
 
40
   const QString& getFrequency () const;
 
41
   const QString& getBitrate   () const;
 
42
   const QString& getBandwidth () const;
 
43
   bool isEnabled              () const;
 
44
 
 
45
   //Setters
 
46
   void setPayload   ( const QString& payload   );
 
47
   void setName      ( const QString& name      );
 
48
   void setFrequency ( const QString& frequency );
 
49
   void setBitrate   ( const QString& bitrate   );
 
50
   void setBandwidth ( const QString& bandwidth );
 
51
   void setEnabled   ( bool enabled      );
 
52
 
 
53
private:
 
54
   //Attributes
 
55
   QString m_Payload   ;
 
56
   QString m_Name      ;
 
57
   QString m_Frequency ;
 
58
   QString m_Bitrate   ;
 
59
   QString m_Bandwidth ;
 
60
   bool    m_Enabled   ;
 
61
 
 
62
   //Operators
 
63
   Codec& operator=(const Codec&);
 
64
};
 
65
 
 
66
#endif