15 lines
233 B
C++
15 lines
233 B
C++
#pragma once
|
|
#include <Windows.h>
|
|
#include <ShlObj.h>
|
|
#include <string>
|
|
#include <Commdlg.h>
|
|
#include <tchar.h>
|
|
class BrowseForFolder
|
|
{
|
|
public :
|
|
int SelectFile(std::string& path);
|
|
private:
|
|
std::string TCHAR2STRING(TCHAR* STR);
|
|
};
|
|
|