Cleaned code
Former-commit-id: a61b8bf3470036cd8a61199e78609206d959966f
This commit is contained in:
parent
34c1479a30
commit
fcacaba7ca
|
|
@ -11,10 +11,6 @@ NzDirectoryImpl::NzDirectoryImpl(const NzDirectory* parent)
|
||||||
NazaraUnused(parent);
|
NazaraUnused(parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
NzDirectoryImpl::~NzDirectoryImpl()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void NzDirectoryImpl::Close()
|
void NzDirectoryImpl::Close()
|
||||||
{
|
{
|
||||||
FindClose(m_handle);
|
FindClose(m_handle);
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ class NzDirectoryImpl : NzNonCopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzDirectoryImpl(const NzDirectory* parent);
|
NzDirectoryImpl(const NzDirectory* parent);
|
||||||
~NzDirectoryImpl();
|
~NzDirectoryImpl() = default;
|
||||||
|
|
||||||
void Close();
|
void Close();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,10 +13,6 @@ m_parent(parent)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
NzDynLibImpl::~NzDynLibImpl()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
NzDynLibFunc NzDynLibImpl::GetSymbol(const NzString& symbol) const
|
NzDynLibFunc NzDynLibImpl::GetSymbol(const NzString& symbol) const
|
||||||
{
|
{
|
||||||
NzDynLibFunc sym = reinterpret_cast<NzDynLibFunc>(GetProcAddress(m_handle, symbol.GetConstBuffer()));
|
NzDynLibFunc sym = reinterpret_cast<NzDynLibFunc>(GetProcAddress(m_handle, symbol.GetConstBuffer()));
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ class NzDynLibImpl : NzNonCopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzDynLibImpl(NzDynLib* m_parent);
|
NzDynLibImpl(NzDynLib* m_parent);
|
||||||
~NzDynLibImpl();
|
~NzDynLibImpl() = default;
|
||||||
|
|
||||||
NzDynLibFunc GetSymbol(const NzString& symbol) const;
|
NzDynLibFunc GetSymbol(const NzString& symbol) const;
|
||||||
bool Load(const NzString& libraryPath);
|
bool Load(const NzString& libraryPath);
|
||||||
|
|
|
||||||
|
|
@ -14,10 +14,6 @@ m_endOfFileUpdated(true)
|
||||||
NazaraUnused(parent);
|
NazaraUnused(parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
NzFileImpl::~NzFileImpl()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void NzFileImpl::Close()
|
void NzFileImpl::Close()
|
||||||
{
|
{
|
||||||
CloseHandle(m_handle);
|
CloseHandle(m_handle);
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ class NzFileImpl : NzNonCopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
NzFileImpl(const NzFile* parent);
|
NzFileImpl(const NzFile* parent);
|
||||||
~NzFileImpl();
|
~NzFileImpl() = default;
|
||||||
|
|
||||||
void Close();
|
void Close();
|
||||||
bool EndOfFile() const;
|
bool EndOfFile() const;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue