Panda3D
 All Classes Functions Variables Enumerations
filename_assist.h
1 // Filename: filename_assist.h
2 // Created by: drose (13Apr09)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef FILENAME_ASSIST_H
16 #define FILENAME_ASSIST_H
17 
18 #include "dtoolbase.h"
19 
20 // A helper module on OSX to call some Objective-C Cocoa functions.
21 
22 #ifdef IS_OSX
23 
24 string get_osx_home_directory();
25 string get_osx_temp_directory();
26 string get_osx_user_appdata_directory();
27 string get_osx_common_appdata_directory();
28 
29 #endif // IS_OSX
30 
31 #endif