Fission FSN
Loading...
Searching...
No Matches
gfPhotoCapture.h
Go to the documentation of this file.
1#ifndef gfPhotoCapturehdr
2#define gfPhotoCapturehdr
3
4#include <fsCore/fsStr.h>
6
8{
9inline const fsStr& folderGet()
10{
11 static const fsStr folder("photos");
12 return folder;
13}
14
15inline const fsStr& successPrefixGet()
16{
17 static const fsStr prefix("hog-photo-");
18 return prefix;
19}
20
21inline fsStr userPathGet(const fsStr& pFilename)
22{
23 return folderGet() + "/" + pFilename;
24}
25
30}
31
32#endif
Definition fsCResourceName.h:32
@ eRES_LOCATION_USER_SETTINGS
Definition fsCResourceName.h:38
Definition fsStr.h:23
Definition gfPhotoCapture.h:8
const fsStr & folderGet()
Definition gfPhotoCapture.h:9
fsStr userPathGet(const fsStr &pFilename)
Definition gfPhotoCapture.h:21
const fsStr & successPrefixGet()
Definition gfPhotoCapture.h:15
fsCResourceName userResourceNameGet(const fsStr &pFilename)
Definition gfPhotoCapture.h:26