Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
TemporaryFile.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
6
7 /*
8 ********************************************************************************
9 ************************ FileSystem::AppTmpFileManager *************************
10 ********************************************************************************
11 */
12 inline filesystem::path AppTmpFileManager::GetRootTmpDir () const
13 {
14 return fTmpDir_;
15 }
16
17 /*
18 ********************************************************************************
19 ***************************** FileSystem::ScopedTmpDir *************************
20 ********************************************************************************
21 */
22 inline ScopedTmpDir::operator filesystem::path () const
23 {
24 return fTmpDir_;
25 }
26
27 /*
28 ********************************************************************************
29 **************************** FileSystem::ScopedTmpFile *************************
30 ********************************************************************************
31 */
32 inline ScopedTmpFile::operator filesystem::path () const
33 {
34 return fTmpFile_;
35 }
36
37}