Added WXDLLEXPORT's to the class definitions
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
a097c93d4f
commit
a0250ba3e5
@ -30,7 +30,7 @@
|
||||
// wxFileStream using wxFile
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class wxFileInputStream: public wxInputStream {
|
||||
class WXDLLEXPORT wxFileInputStream: public wxInputStream {
|
||||
public:
|
||||
wxFileInputStream(const wxString& ifileName);
|
||||
wxFileInputStream(wxFile& file);
|
||||
@ -53,7 +53,7 @@ class wxFileInputStream: public wxInputStream {
|
||||
bool m_file_destroy;
|
||||
};
|
||||
|
||||
class wxFileOutputStream: public wxOutputStream {
|
||||
class WXDLLEXPORT wxFileOutputStream: public wxOutputStream {
|
||||
public:
|
||||
wxFileOutputStream(const wxString& fileName);
|
||||
wxFileOutputStream(wxFile& file);
|
||||
@ -81,7 +81,7 @@ class wxFileOutputStream: public wxOutputStream {
|
||||
bool m_file_destroy;
|
||||
};
|
||||
|
||||
class wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
||||
class WXDLLEXPORT wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
||||
public:
|
||||
wxFileStream(const wxString& fileName);
|
||||
};
|
||||
@ -90,7 +90,7 @@ class wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
||||
// wxFFileStream using wxFFile
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class wxFFileInputStream: public wxInputStream {
|
||||
class WXDLLEXPORT wxFFileInputStream: public wxInputStream {
|
||||
public:
|
||||
wxFFileInputStream(const wxString& ifileName);
|
||||
wxFFileInputStream(wxFFile& file);
|
||||
@ -113,7 +113,7 @@ class wxFFileInputStream: public wxInputStream {
|
||||
bool m_file_destroy;
|
||||
};
|
||||
|
||||
class wxFFileOutputStream: public wxOutputStream {
|
||||
class WXDLLEXPORT wxFFileOutputStream: public wxOutputStream {
|
||||
public:
|
||||
wxFFileOutputStream(const wxString& fileName);
|
||||
wxFFileOutputStream(wxFFile& file);
|
||||
@ -141,7 +141,7 @@ class wxFFileOutputStream: public wxOutputStream {
|
||||
bool m_file_destroy;
|
||||
};
|
||||
|
||||
class wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream {
|
||||
class WXDLLEXPORT wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream {
|
||||
public:
|
||||
wxFFileStream(const wxString& fileName);
|
||||
};
|
||||
@ -151,3 +151,10 @@ class wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream {
|
||||
#endif
|
||||
// _WX_WXFSTREAM_H__
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user