aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llfile.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llfile.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/llcommon/llfile.h b/linden/indra/llcommon/llfile.h
index c6092f7..ee37605 100644
--- a/linden/indra/llcommon/llfile.h
+++ b/linden/indra/llcommon/llfile.h
@@ -70,7 +70,7 @@ typedef struct stat llstat;
70 70
71#include "llstring.h" // safe char* -> std::string conversion 71#include "llstring.h" // safe char* -> std::string conversion
72 72
73class LLFile 73class LL_COMMON_API LLFile
74{ 74{
75public: 75public:
76 // All these functions take UTF8 path/filenames. 76 // All these functions take UTF8 path/filenames.
@@ -95,7 +95,7 @@ public:
95 95
96#if USE_LLFILESTREAMS 96#if USE_LLFILESTREAMS
97 97
98class llifstream : public std::basic_istream < char , std::char_traits < char > > 98class LL_COMMON_API llifstream : public std::basic_istream < char , std::char_traits < char > >
99{ 99{
100 // input stream associated with a C stream 100 // input stream associated with a C stream
101public: 101public:
@@ -136,7 +136,7 @@ private:
136}; 136};
137 137
138 138
139class llofstream : public std::basic_ostream< char , std::char_traits < char > > 139class LL_COMMON_API llofstream : public std::basic_ostream< char , std::char_traits < char > >
140{ 140{
141public: 141public:
142 typedef std::basic_ostream< char , std::char_traits < char > > _Myt; 142 typedef std::basic_ostream< char , std::char_traits < char > > _Myt;
@@ -185,7 +185,7 @@ private:
185//#define llifstream std::ifstream 185//#define llifstream std::ifstream
186//#define llofstream std::ofstream 186//#define llofstream std::ofstream
187 187
188class llifstream : public std::ifstream 188class LL_COMMON_API llifstream : public std::ifstream
189{ 189{
190public: 190public:
191 llifstream() : std::ifstream() 191 llifstream() : std::ifstream()
@@ -203,7 +203,7 @@ public:
203}; 203};
204 204
205 205
206class llofstream : public std::ofstream 206class LL_COMMON_API llofstream : public std::ofstream
207{ 207{
208public: 208public:
209 llofstream() : std::ofstream() 209 llofstream() : std::ofstream()