mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Merge pull request #275 from zrax/file-utils
Unify filesystem utilities
This commit is contained in:
@ -533,10 +533,10 @@ class plSDLMgr
|
||||
{
|
||||
friend class plSDLParser;
|
||||
private:
|
||||
std::string fSDLDir;
|
||||
plFileName fSDLDir;
|
||||
plSDL::DescriptorList fDescriptors;
|
||||
plNetApp* fNetApp;
|
||||
uint32_t fBehaviorFlags;
|
||||
uint32_t fBehaviorFlags;
|
||||
|
||||
void IDeleteDescriptors(plSDL::DescriptorList* dl);
|
||||
public:
|
||||
@ -548,8 +548,8 @@ public:
|
||||
|
||||
const plSDL::DescriptorList * GetDescriptors( void ) const { return &fDescriptors;}
|
||||
|
||||
void SetSDLDir(const char* s) { fSDLDir=s; }
|
||||
const char* GetSDLDir() const { return fSDLDir.c_str(); }
|
||||
void SetSDLDir(const plFileName& s) { fSDLDir=s; }
|
||||
plFileName GetSDLDir() const { return fSDLDir; }
|
||||
|
||||
void SetNetApp(plNetApp* a) { fNetApp=a; }
|
||||
plNetApp* GetNetApp() const { return fNetApp; }
|
||||
|
@ -41,7 +41,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
*==LICENSE==*/
|
||||
#include "HeadSpin.h"
|
||||
#include "plSDL.h"
|
||||
#include "plFile/hsFiles.h"
|
||||
#include "plFile/plStreamSource.h"
|
||||
#include "pnNetCommon/pnNetCommon.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
|
Reference in New Issue
Block a user