~ubuntu-branches/ubuntu/trusty/gst123/trusty

« back to all changes in this revision

Viewing changes to src/configfile.h

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2012-03-26 18:57:53 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120326185753-wxrpqxoj3q58cwyl
Tags: 0.3.0-1
* New upstream release.
* debian/control:
  + Added DMUA (after consent of Sebastian Dröge)
  + Bumped Standards-Version to 3.9.3
* Refreshed manpage-fixes.diff patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
class ConfigFile
22
22
{
23
23
  std::string m_audio_output;
 
24
  std::string m_visualization;
24
25
 
25
26
public:
26
 
  static ConfigFile *the();       // Singleton
 
27
  static ConfigFile& the();       // Singleton
27
28
 
28
29
  ConfigFile();
29
30
 
30
31
  std::string audio_output() const;
 
32
  std::string visualization() const;
31
33
};