LightWrap++
AC++wrapperfortheLightWave3DSDK
platform_cocoa.h
Go to the documentation of this file.
1 /*
2  * platform_cocoa.h
3  * lwpp
4  *
5  * Created by Michael Wolf on 9/30/09.
6  * Copyright 2009 db&w Bornemann und Wolf GbR. All rights reserved.
7  *
8  */
9 
10 #include <string>
11 
12 void cocOpenURL(const std::string &s);
13 
14 std::string cocGetTempPath();
15 
16 
18 {
19  std::string retValue;
20  const char *title;
21  int reqType;
22  const char *extension;
23  const char *savePath;
24  const char *fName;
25 public:
26  cocFileRequest(const int _reqType, char *_title,
27  const char *fileType, const char *ext, const char *baseName,
28  const char *path, const char *_baseDirType, int bufLen);
30  bool Post();
31  const char *getFullName();
32 };