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:
@@ -30,7 +30,7 @@
|
|||||||
// wxFileStream using wxFile
|
// wxFileStream using wxFile
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class wxFileInputStream: public wxInputStream {
|
class WXDLLEXPORT wxFileInputStream: public wxInputStream {
|
||||||
public:
|
public:
|
||||||
wxFileInputStream(const wxString& ifileName);
|
wxFileInputStream(const wxString& ifileName);
|
||||||
wxFileInputStream(wxFile& file);
|
wxFileInputStream(wxFile& file);
|
||||||
@@ -53,7 +53,7 @@ class wxFileInputStream: public wxInputStream {
|
|||||||
bool m_file_destroy;
|
bool m_file_destroy;
|
||||||
};
|
};
|
||||||
|
|
||||||
class wxFileOutputStream: public wxOutputStream {
|
class WXDLLEXPORT wxFileOutputStream: public wxOutputStream {
|
||||||
public:
|
public:
|
||||||
wxFileOutputStream(const wxString& fileName);
|
wxFileOutputStream(const wxString& fileName);
|
||||||
wxFileOutputStream(wxFile& file);
|
wxFileOutputStream(wxFile& file);
|
||||||
@@ -81,7 +81,7 @@ class wxFileOutputStream: public wxOutputStream {
|
|||||||
bool m_file_destroy;
|
bool m_file_destroy;
|
||||||
};
|
};
|
||||||
|
|
||||||
class wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
class WXDLLEXPORT wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
||||||
public:
|
public:
|
||||||
wxFileStream(const wxString& fileName);
|
wxFileStream(const wxString& fileName);
|
||||||
};
|
};
|
||||||
@@ -90,7 +90,7 @@ class wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
|||||||
// wxFFileStream using wxFFile
|
// wxFFileStream using wxFFile
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class wxFFileInputStream: public wxInputStream {
|
class WXDLLEXPORT wxFFileInputStream: public wxInputStream {
|
||||||
public:
|
public:
|
||||||
wxFFileInputStream(const wxString& ifileName);
|
wxFFileInputStream(const wxString& ifileName);
|
||||||
wxFFileInputStream(wxFFile& file);
|
wxFFileInputStream(wxFFile& file);
|
||||||
@@ -113,7 +113,7 @@ class wxFFileInputStream: public wxInputStream {
|
|||||||
bool m_file_destroy;
|
bool m_file_destroy;
|
||||||
};
|
};
|
||||||
|
|
||||||
class wxFFileOutputStream: public wxOutputStream {
|
class WXDLLEXPORT wxFFileOutputStream: public wxOutputStream {
|
||||||
public:
|
public:
|
||||||
wxFFileOutputStream(const wxString& fileName);
|
wxFFileOutputStream(const wxString& fileName);
|
||||||
wxFFileOutputStream(wxFFile& file);
|
wxFFileOutputStream(wxFFile& file);
|
||||||
@@ -141,7 +141,7 @@ class wxFFileOutputStream: public wxOutputStream {
|
|||||||
bool m_file_destroy;
|
bool m_file_destroy;
|
||||||
};
|
};
|
||||||
|
|
||||||
class wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream {
|
class WXDLLEXPORT wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream {
|
||||||
public:
|
public:
|
||||||
wxFFileStream(const wxString& fileName);
|
wxFFileStream(const wxString& fileName);
|
||||||
};
|
};
|
||||||
@@ -151,3 +151,10 @@ class wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream {
|
|||||||
#endif
|
#endif
|
||||||
// _WX_WXFSTREAM_H__
|
// _WX_WXFSTREAM_H__
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user