diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcommon/llfile.h | 10 |
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 | ||
73 | class LLFile | 73 | class LL_COMMON_API LLFile |
74 | { | 74 | { |
75 | public: | 75 | public: |
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 | ||
98 | class llifstream : public std::basic_istream < char , std::char_traits < char > > | 98 | class 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 |
101 | public: | 101 | public: |
@@ -136,7 +136,7 @@ private: | |||
136 | }; | 136 | }; |
137 | 137 | ||
138 | 138 | ||
139 | class llofstream : public std::basic_ostream< char , std::char_traits < char > > | 139 | class LL_COMMON_API llofstream : public std::basic_ostream< char , std::char_traits < char > > |
140 | { | 140 | { |
141 | public: | 141 | public: |
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 | ||
188 | class llifstream : public std::ifstream | 188 | class LL_COMMON_API llifstream : public std::ifstream |
189 | { | 189 | { |
190 | public: | 190 | public: |
191 | llifstream() : std::ifstream() | 191 | llifstream() : std::ifstream() |
@@ -203,7 +203,7 @@ public: | |||
203 | }; | 203 | }; |
204 | 204 | ||
205 | 205 | ||
206 | class llofstream : public std::ofstream | 206 | class LL_COMMON_API llofstream : public std::ofstream |
207 | { | 207 | { |
208 | public: | 208 | public: |
209 | llofstream() : std::ofstream() | 209 | llofstream() : std::ofstream() |