class Poco::SharedLibraryImpl

#include <SharedLibrary_HPUX.h>

class SharedLibraryImpl
{
protected:
    // enums

    enum Flags;

    // methods

    void
    loadImpl(
        const std::string& path,
        int flags
        );

    void
    unloadImpl();

    bool
    isLoadedImpl() const;

    void*
    findSymbolImpl(const std::string& name);

    const std::string&
    getPathImpl() const;

    static
    std::string
    suffixImpl();
};

// direct descendants

class SharedLibrary;