Switch to unified view

a/src/internfile/uncomp.h b/src/internfile/uncomp.h
...
...
41
            const std::vector<std::string>& cmdv,
41
            const std::vector<std::string>& cmdv,
42
            std::string& tfile);
42
            std::string& tfile);
43
43
44
private:
44
private:
45
    TempDir *m_dir;
45
    TempDir *m_dir;
46
    string   m_tfile;
46
    std::string   m_tfile;
47
    string   m_srcpath;
47
    std::string   m_srcpath;
48
    bool m_docache;
48
    bool m_docache;
49
49
50
    class UncompCache {
50
    class UncompCache {
51
    public:
51
    public:
52
    UncompCache()
52
    UncompCache()
...
...
57
    {
57
    {
58
        delete m_dir;
58
        delete m_dir;
59
    }
59
    }
60
    PTMutexInit m_lock;
60
    PTMutexInit m_lock;
61
    TempDir *m_dir;
61
    TempDir *m_dir;
62
    string   m_tfile;
62
    std::string   m_tfile;
63
    string   m_srcpath;
63
    std::string   m_srcpath;
64
    };
64
    };
65
    static UncompCache o_cache;
65
    static UncompCache o_cache;
66
};
66
};
67
67
68
#endif /* _UNCOMP_H_INCLUDED_ */
68
#endif /* _UNCOMP_H_INCLUDED_ */