aboutsummaryrefslogtreecommitdiff
path: root/openssl/types-parsers.hxx
blob: e1be8c943a834d631cfe1964f62d6dbb5be7dd99 (plain)
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
// file      : openssl/types-parsers.hxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

// CLI parsers, included into the generated source files.
//

#ifndef OPENSSL_TYPES_PARSERS_HXX
#define OPENSSL_TYPES_PARSERS_HXX

#include <openssl/types.hxx>

namespace openssl
{
  namespace cli
  {
    class scanner;

    template <typename T>
    struct parser;

    template <>
    struct parser<simulate_outcome>
    {
      static void
      parse (simulate_outcome&, bool&, scanner&);
    };
  }
}

#endif // OPENSSL_TYPES_PARSERS_HXX