File: chillout.h

package info (click to toggle)
sqlitestudio 3.4.21-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 61,476 kB
  • sloc: ansic: 406,208; cpp: 123,881; yacc: 2,692; java: 992; tcl: 497; sh: 462; xml: 426; makefile: 19
file content (42 lines) | stat: -rw-r--r-- 980 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef CHILLOUT_H
#define CHILLOUT_H

#include <functional>
#include <string>
#include <atomic>
#include "common/common.h"

namespace Debug {
    class Chillout {
    public:
        static Chillout& getInstance()
        {
            static Chillout instance; // Guaranteed to be destroyed.
            // Instantiated on first use.
            return instance;
        }

    public:
#ifdef _WIN32
        typedef std::wstring string_t;
#else
        typedef std::string string_t;
#endif

    public:
        void init(const string_t &appName, const string_t &pathToDumpsDir);
        void deinit();
        void setBacktraceCallback(const std::function<void(const char * const)> &callback);
        void setCrashCallback(const std::function<void()> &callback);

    private:
        Chillout(): m_InitCounter(0) {}
        Chillout(Chillout const&);
        void operator=(Chillout const&);

    private:
        std::atomic_int m_InitCounter;
    };
}

#endif // CHILLOUT_H