File: cleanconfig.h

package info (click to toggle)
smplayer 18.10.0~ds0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 34,884 kB
  • sloc: cpp: 48,881; ansic: 16,654; makefile: 298; sh: 43
file content (16 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#ifndef CLEANCONFIG_H
#define CLEANCONFIG_H

#include <QString>
#include <QStringList>

class CleanConfig {
public:
	static void clean(const QString &config_path);

private:
	static QStringList listDir(const QString &path);
};

#endif