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

21 lines
419 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef IGNORES_HPP_INCLUDED
#define IGNORES_HPP_INCLUDED
#include "../../../Core/Classes/Ignore.hpp"
#include <functional>
#include <vector>
/** @addtogroup GameTabs
* @{ */
2018-12-27 18:17:09 +00:00
namespace Ignores
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
bool IsOpen();
bool Open();
std::vector<Internal::Ignore> GetAll();
std::vector<Internal::Ignore> GetAll(const std::function<bool (Internal::Ignore&)>& Filter);
2018-12-31 21:52:58 +00:00
}
2017-12-25 23:49:48 +00:00
/** @} */
#endif // IGNORES_HPP_INCLUDED