Subversion Repositories tpanel

Rev

Rev 50 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 50 Rev 51
Line 22... Line 22...
22
 
22
 
23
class TTPInit
23
class TTPInit
24
{
24
{
25
    public:
25
    public:
26
        TTPInit(const std::string& path);
26
        TTPInit(const std::string& path);
-
 
27
        TTPInit();
-
 
28
 
-
 
29
        void setPath(const std::string& p) { mPath = p; }
-
 
30
        bool createDirectoryStructure();
27
 
31
 
28
    private:
32
    private:
29
        bool createPanelConfigs();
33
        bool createPanelConfigs();
30
        bool createDirectoryStructure();
-
 
31
        bool _makeDir(const std::string& dir);
34
        bool _makeDir(const std::string& dir);
32
#ifdef __ANDROID__
35
#ifdef __ANDROID__
33
        bool askPermissions();
36
        bool askPermissions();
34
#endif
37
#endif
35
        std::string mPath;
38
        std::string mPath;