mirror of
https://gitee.com/nikolan/keil_development_assistant.git
synced 2025-01-16 07:52:51 +08:00
14 lines
215 B
C++
14 lines
215 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
|