File: validate.hpp

package info (click to toggle)
openmw 0.50.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,076 kB
  • sloc: cpp: 380,958; xml: 2,192; sh: 1,449; python: 911; makefile: 26; javascript: 5
file content (32 lines) | stat: -rw-r--r-- 832 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef OPENMW_COMPONENTS_FALLBACK_VALIDATE_H
#define OPENMW_COMPONENTS_FALLBACK_VALIDATE_H

#include <map>
#include <string>
#include <vector>

// NOLINTBEGIN(readability-identifier-naming)
namespace boost
{
    class any;
}
// NOLINTEND(readability-identifier-naming)

namespace Fallback
{

    bool isAllowedIntFallbackKey(std::string_view key);
    bool isAllowedFloatFallbackKey(std::string_view key);
    bool isAllowedNonNumericFallbackKey(std::string_view key);
    bool isAllowedUnusedFallbackKey(std::string_view key); // imported from Morrowind.ini but unused

    struct FallbackMap
    {
        std::map<std::string, std::string> mMap;
    };

    // Parses and validates a fallback map from boost program_options.
    void validate(boost::any& v, std::vector<std::string> const& tokens, FallbackMap*, int);
}

#endif