Mercurial > minori
view dep/anitomy/anitomy/options.h @ 131:5c48adf4ca1f
builds/win32: install wine32
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 09 Nov 2023 02:43:40 -0500 |
parents | 5c0397762b53 |
children | a0aa8c8c4307 |
line wrap: on
line source
/* ** Copyright (c) 2014-2017, Eren Okka ** ** This Source Code Form is subject to the terms of the Mozilla Public ** License, v. 2.0. If a copy of the MPL was not distributed with this ** file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #pragma once #include <vector> #include "string.h" namespace anitomy { struct Options { string_t allowed_delimiters = L" _.&+,|"; std::vector<string_t> ignored_strings; bool parse_episode_number = true; bool parse_episode_title = true; bool parse_file_extension = true; bool parse_release_group = true; }; } // namespace anitomy