/indra/llvfs/lldir_mac.h

https://bitbucket.org/lindenlab/viewer-beta/ · C Header · 62 lines · 25 code · 12 blank · 25 comment · 1 complexity · 0a868c70e8008ac98134dfc21576a7c3 MD5 · raw file

  1. /**
  2. * @file lldir_mac.h
  3. * @brief Definition of directory utilities class for Mac OS X
  4. *
  5. * $LicenseInfo:firstyear=2000&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #if !LL_DARWIN
  27. #error This header must not be included when compiling for any target other than Mac OS. Consider including lldir.h instead.
  28. #endif // !LL_DARWIN
  29. #ifndef LL_LLDIR_MAC_H
  30. #define LL_LLDIR_MAC_H
  31. #include "lldir.h"
  32. #include <dirent.h>
  33. class LLDir_Mac : public LLDir
  34. {
  35. public:
  36. LLDir_Mac();
  37. virtual ~LLDir_Mac();
  38. /*virtual*/ void initAppDirs(const std::string &app_name,
  39. const std::string& app_read_only_data_dir);
  40. virtual std::string getCurPath();
  41. virtual U32 countFilesInDir(const std::string &dirname, const std::string &mask);
  42. virtual BOOL fileExists(const std::string &filename) const;
  43. /*virtual*/ std::string getLLPluginLauncher();
  44. /*virtual*/ std::string getLLPluginFilename(std::string base_name);
  45. private:
  46. int mCurrentDirIndex;
  47. int mCurrentDirCount;
  48. std::string mCurrentDir;
  49. };
  50. #endif // LL_LLDIR_MAC_H