SCV  4.2.1
Simple Components for Visual
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
FileOpen.h
Go to the documentation of this file.
1 
7 #ifndef __SCV_FILE_OPEN_H__
8 #define __SCV_FILE_OPEN_H__
9 
10 #ifndef DOXYGEN_SKIP_THIS
11 #include "Singleton.h"
12 #endif // DOXYGEN_SKIP_THIS
13 
14 #include <string>
15 
16 namespace scv {
17 
22 class FileOpen : public Singleton<FileOpen> {
23  friend class Singleton<FileOpen>;
24 
25 public:
26  ~FileOpen(void);
27 
30  void showDialog();
31 
34  std::string getFilePath();
35 
36 private:
37  char* path;
38 };
39 
40 } // namespace scv
41 
42 #endif