clearing the cvs mess...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-07-08 23:46:00 +00:00
parent 05b8c7b93c
commit d4a0c23fcd

View File

@@ -70,7 +70,7 @@
There are no instances of this class, it simply serves as a There are no instances of this class, it simply serves as a
namespace for its static member functions. namespace for its static member functions.
*/ */
class wxDllLoader class WXDLLEXPORT wxDllLoader
{ {
public: public:
/** This function loads a shared library into memory, with libname /** This function loads a shared library into memory, with libname
@@ -94,6 +94,9 @@ public:
*/ */
static void * GetSymbol(wxDllType dllHandle, const wxString &name); static void * GetSymbol(wxDllType dllHandle, const wxString &name);
// return the standard DLL extension (with leading dot) for this platform
static wxString GetDllExt();
private: private:
/// forbid construction of objects /// forbid construction of objects
wxDllLoader(); wxDllLoader();
@@ -103,7 +106,7 @@ private:
// wxLibrary // wxLibrary
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxLibrary : public wxObject class WXDLLEXPORT wxLibrary : public wxObject
{ {
public: public:
wxHashTable classTable; wxHashTable classTable;
@@ -130,7 +133,7 @@ protected:
// wxLibraries // wxLibraries
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxLibraries class WXDLLEXPORT wxLibraries
{ {
public: public:
wxLibraries(); wxLibraries();