diff options
author | Tofu Buzzard <no-email> | 2011-03-09 10:56:03 -0800 |
---|---|---|
committer | Tofu Buzzard <no-email> | 2011-03-09 10:56:03 -0800 |
commit | 63636e8ceabc7487e42427d9a6a83cad5116daa0 (patch) | |
tree | e912dda63824af14ea7a53c4e31b9ec22a514b44 /indra/llvfs/lldir_linux.h | |
parent | 47f8b357eaa2af76e675c2235a071962f4203b5f (diff) | |
parent | 75e938cd75d82fcea7d58c556abf403b3629283e (diff) |
merge
Diffstat (limited to 'indra/llvfs/lldir_linux.h')
-rw-r--r-- | indra/llvfs/lldir_linux.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/indra/llvfs/lldir_linux.h b/indra/llvfs/lldir_linux.h index 451e81ae93..a34de1241d 100644 --- a/indra/llvfs/lldir_linux.h +++ b/indra/llvfs/lldir_linux.h @@ -1,6 +1,6 @@ /** * @file lldir_linux.h - * @brief Definition of directory utilities class for linux + * @brief Definition of directory utilities class for linux * * $LicenseInfo:firstyear=2000&license=viewerlgpl$ * Second Life Viewer Source Code @@ -24,6 +24,10 @@ * $/LicenseInfo$ */ +#if !LL_LINUX +#error This header must not be included when compiling for any target other than Linux. Consider including lldir.h instead. +#endif // !LL_LINUX + #ifndef LL_LLDIR_LINUX_H #define LL_LLDIR_LINUX_H @@ -40,7 +44,7 @@ public: /*virtual*/ void initAppDirs(const std::string &app_name, const std::string& app_read_only_data_dir); -public: + virtual std::string getCurPath(); virtual U32 countFilesInDir(const std::string &dirname, const std::string &mask); virtual BOOL getNextFileInDir(const std::string &dirname, const std::string &mask, std::string &fname); @@ -53,7 +57,7 @@ private: DIR *mDirp; int mCurrentDirIndex; int mCurrentDirCount; - std::string mCurrentDir; + std::string mCurrentDir; }; #endif // LL_LLDIR_LINUX_H |