~ubuntu-branches/ubuntu/saucy/phonon-backend-gstreamer/saucy-proposed

« back to all changes in this revision

Viewing changes to gstreamer/effectmanager.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2011-04-15 14:43:30 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110415144330-7uif3319lxdu4ltt
Tags: 4:4.7.0really4.5.0-0ubuntu2
* New upstream release
* Add kubuntu_02_install_codec.diff to fix codec install

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef Phonon_GSTREAMER_EFFECTMANAGER_H
19
19
#define Phonon_GSTREAMER_EFFECTMANAGER_H
20
20
 
21
 
#include "common.h"
22
 
 
23
21
#include <QtCore/QObject>
24
22
#include <QtCore/QStringList>
25
23
 
43
41
    {
44
42
        return m_name;
45
43
    }
 
44
 
46
45
    QString description() const
47
46
    {
48
47
        return m_description;
49
48
    }
 
49
 
50
50
    QString author() const
51
51
    {
52
52
        return m_author;
53
53
    }
 
54
 
54
55
    QStringList properties() const
55
56
    {
56
57
        return m_properties;
57
58
    }
 
59
 
58
60
    void addProperty(QString propertyName)
59
61
    {
60
62
        m_properties.append(propertyName);