~ubuntu-branches/ubuntu/precise/libffado/precise

« back to all changes in this revision

Viewing changes to src/DeviceStringParser.h

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Knoth
  • Date: 2009-06-27 14:55:45 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090627145545-ikyyoc5z1edx148o
Tags: 2.0~rc2+svn1569-2
* Fix FTBS on powerpc (Closes: #534837)
* Fix lintian warning regarding obsolete dh_desktop
* Bump standards version to 3.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
#include <vector>
30
30
#include <string>
 
31
#include <stdint.h>
31
32
 
32
33
class ConfigRom;
33
34
 
73
74
    int countDeviceStrings() {return m_DeviceStrings.size();};
74
75
 
75
76
    bool match(ConfigRom &);
 
77
    int matchPosition(ConfigRom& c);
76
78
 
77
79
    bool parseString(std::string s);
78
80
    void show();