OSDN Git Service

GitStatusListCtrl port build complete
[tortoisegit/TortoiseGitJp.git] / Utils / TempFile.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2006,2008 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 #include "TGitPath.h"\r
22 #include "GitRev.h"\r
23 \r
24 /**\r
25 * \ingroup Utils\r
26 * This singleton class handles temporary files.\r
27 * All temp files are deleted at the end of a run of SVN operations\r
28 */\r
29 class CTempFiles\r
30 {\r
31 private:\r
32         CTempFiles(void);\r
33         ~CTempFiles(void);\r
34 public:\r
35         static CTempFiles& Instance();\r
36         \r
37         /**\r
38          * Returns a path to a temporary file.\r
39          * \param bRemoveAtEnd if true, the temp file is removed when this object\r
40          *                     goes out of scope.\r
41          * \param path         if set, the temp file will have the same file extension\r
42          *                     as this path.\r
43          */\r
44         CTGitPath               GetTempFilePath(bool bRemoveAtEnd, const CTGitPath& path = CTGitPath(), const GitRev revision = GitRev());\r
45 \r
46 private:\r
47 \r
48 private:\r
49         CTGitPathList m_TempFileList;\r
50 };\r