mirror of
https://gitee.com/nikolan/keil_development_assistant.git
synced 2025-02-05 03:58:22 +08:00
14 lines
213 B
C++
14 lines
213 B
C++
#ifndef FIND_PATH_H
|
|
#define FIND_PATH_H
|
|
|
|
#include <QString>
|
|
class find_path
|
|
{
|
|
public:
|
|
find_path();
|
|
static QString find_file_path(const QString& dir_path,const QString& key_world);
|
|
|
|
};
|
|
|
|
#endif // FIND_PATH_H
|