~cyrildz/playermodules/trunk

« back to all changes in this revision

Viewing changes to logger.h

  • Committer: cyrildz
  • Date: 2015-05-16 15:32:46 UTC
  • Revision ID: cyrildz@gmail.com-20150516153246-b4ymy79mmn1lgxd1
added a proper application configuration directory.
I fixed some bugs

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        }
45
45
 
46
46
    public Q_SLOTS:
 
47
 
 
48
        /**
 
49
         * @brief setConfig set up the default configurations:
 
50
         * database path,
 
51
         * m3u playlist directory,
 
52
         * podcast directory.
 
53
         * the application home path.
 
54
         */
 
55
        void setConfig();
 
56
 
 
57
        /**
 
58
         * @brief databaseConfig set up the database tables structure.
 
59
         */
 
60
        void databaseConfig();
 
61
 
47
62
        /**
48
63
         * @brief  scans the source directory and
49
64
         * look for any audio file presents in this directory.
310
325
 
311
326
        QFileSystemWatcher *directoryWatcher;
312
327
 
 
328
        QString appName;
 
329
        QString configPath;
 
330
        QString playlistDirPath;
 
331
 
313
332
    };
314
333
 
315
334
}