Network: Add WebService
This commit is contained in:
committed by
Jérôme Leclercq
parent
b5206ebdb7
commit
c65daba072
25
include/Nazara/Network/CurlLibrary.inl
Normal file
25
include/Nazara/Network/CurlLibrary.inl
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
|
||||
// This file is part of the "Nazara Engine - Network module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#include <Nazara/Network/Debug.hpp>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
inline CurlLibrary::CurlLibrary() :
|
||||
m_isInitialized(false)
|
||||
{
|
||||
}
|
||||
|
||||
inline CurlLibrary::~CurlLibrary()
|
||||
{
|
||||
Unload();
|
||||
}
|
||||
|
||||
inline bool CurlLibrary::IsLoaded() const
|
||||
{
|
||||
return m_isInitialized;
|
||||
}
|
||||
}
|
||||
|
||||
#include <Nazara/Network/DebugOff.hpp>
|
||||
Reference in New Issue
Block a user