19 lines
258 B
C++
19 lines
258 B
C++
//
|
|
// Created by taynpg on 24-8-6.
|
|
//
|
|
|
|
#ifndef FUNCTIONIMP_H
|
|
#define FUNCTIONIMP_H
|
|
#include <wx/arrstr.h>
|
|
|
|
class CFunctionImp
|
|
{
|
|
public:
|
|
CFunctionImp();
|
|
|
|
public:
|
|
bool gen(const wxString& out_dir, const wxArrayString& dirs);
|
|
};
|
|
|
|
#endif //FUNCTIONIMP_H
|