SourceXtractorPlusPlus  0.8
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TemporaryFile.h
Go to the documentation of this file.
1 
17 /*
18  * TemporaryFile.h
19  *
20  * Created on: May 23, 2018
21  * Author: aalvarez
22  */
23 
24 #ifndef _SEFRAMEWORK_FILESYSTEM_TEMPORARYFILE_H
25 #define _SEFRAMEWORK_FILESYSTEM_TEMPORARYFILE_H
26 
27 #include <string>
28 
29 namespace SourceXtractor {
30 
32 public:
33  TemporaryFile(bool autoremove = true);
34  TemporaryFile(const std::string &pattern, bool autoremove = true);
35  TemporaryFile(const std::string &dir, const std::string &pattern, bool autoremove = true);
36 
38 
40  const std::string& getPath() const;
41 
42 private:
45 };
46 
47 }
48 
49 #endif //_SEFRAMEWORK_FILESYSTEM_TEMPORARYFILE_H
STL class.
const std::string & getPath() const
Return the full path of the temporary file.
TemporaryFile(bool autoremove=true)