AlpacaLibrary/Include/Game/Interfaces/GameTabs/Ignores.hpp

21 lines
419 B
C++

#ifndef IGNORES_HPP_INCLUDED
#define IGNORES_HPP_INCLUDED
#include "../../../Core/Classes/Ignore.hpp"
#include <functional>
#include <vector>
/** @addtogroup GameTabs
* @{ */
namespace Ignores
{
bool IsOpen();
bool Open();
std::vector<Internal::Ignore> GetAll();
std::vector<Internal::Ignore> GetAll(const std::function<bool (Internal::Ignore&)>& Filter);
}
/** @} */
#endif // IGNORES_HPP_INCLUDED