~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/breakpad/BreakPad.h

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2008-07-14 16:46:20 UTC
  • mfrom: (1.1.7 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080714164620-67hoz9fs177wpgmr
Tags: 1:1.5.1.31879.dfsg-1ubuntu1
* Merge from Debian unstable (LP: #248100), remaining changes:
  - debian/rules: add dh_icons call
  + debian/control:
    - switch iceweasel to firefox in Recommends field
    - modify debhelper version to >= 5.0.51~
    - modify Maintainer to Ubuntu MOTU Developers

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02110-1301, USA.          *
19
19
 ***************************************************************************/
20
20
 
 
21
#ifndef NBREAKPAD
 
22
 
21
23
#include "BreakpadDllExportMacro.h"
22
24
#include <QString>
23
25
 
24
 
#ifndef NBREAKPAD
25
 
 
26
26
#ifdef __APPLE__
27
27
#   include "external/src/client/mac/handler/exception_handler.h"
 
28
#   define HANDLER_ALL 1
28
29
#elif defined WIN32
29
30
#   include "external/src/client/windows/handler/exception_handler.h"
30
31
#elif defined __linux__
39
40
 
40
41
public:
41
42
    BreakPad( const QString &dump_write_dirpath );
42
 
    ~BreakPad();
 
43
    
 
44
    ~BreakPad() 
 
45
    {}
43
46
 
44
47
    void setProductName( const char* s ) { m_product_name = s; };
45
48
    const char* productName() const { return m_product_name; }