Cleaned code

Former-commit-id: a61b8bf3470036cd8a61199e78609206d959966f
This commit is contained in:
Lynix 2012-10-04 23:39:10 +02:00
parent 34c1479a30
commit fcacaba7ca
6 changed files with 3 additions and 15 deletions

View File

@ -11,10 +11,6 @@ NzDirectoryImpl::NzDirectoryImpl(const NzDirectory* parent)
NazaraUnused(parent);
}
NzDirectoryImpl::~NzDirectoryImpl()
{
}
void NzDirectoryImpl::Close()
{
FindClose(m_handle);

View File

@ -18,7 +18,7 @@ class NzDirectoryImpl : NzNonCopyable
{
public:
NzDirectoryImpl(const NzDirectory* parent);
~NzDirectoryImpl();
~NzDirectoryImpl() = default;
void Close();

View File

@ -13,10 +13,6 @@ m_parent(parent)
{
}
NzDynLibImpl::~NzDynLibImpl()
{
}
NzDynLibFunc NzDynLibImpl::GetSymbol(const NzString& symbol) const
{
NzDynLibFunc sym = reinterpret_cast<NzDynLibFunc>(GetProcAddress(m_handle, symbol.GetConstBuffer()));

View File

@ -17,7 +17,7 @@ class NzDynLibImpl : NzNonCopyable
{
public:
NzDynLibImpl(NzDynLib* m_parent);
~NzDynLibImpl();
~NzDynLibImpl() = default;
NzDynLibFunc GetSymbol(const NzString& symbol) const;
bool Load(const NzString& libraryPath);

View File

@ -14,10 +14,6 @@ m_endOfFileUpdated(true)
NazaraUnused(parent);
}
NzFileImpl::~NzFileImpl()
{
}
void NzFileImpl::Close()
{
CloseHandle(m_handle);

View File

@ -20,7 +20,7 @@ class NzFileImpl : NzNonCopyable
{
public:
NzFileImpl(const NzFile* parent);
~NzFileImpl();
~NzFileImpl() = default;
void Close();
bool EndOfFile() const;