23 lines
513 B
C++
23 lines
513 B
C++
// Copyright (c) 2014-2015 Dr. Colin Hirsch and Daniel Frey
|
|
// Please see LICENSE for license or visit https://github.com/ColinH/PEGTL/
|
|
|
|
#ifndef TAO_CPP_PEGTL_INTERNAL_PAD_OPT_HH
|
|
#define TAO_CPP_PEGTL_INTERNAL_PAD_OPT_HH
|
|
|
|
#include "seq.hh"
|
|
#include "opt.hh"
|
|
#include "star.hh"
|
|
|
|
namespace tao_json_pegtl
|
|
{
|
|
namespace internal
|
|
{
|
|
template< typename Rule, typename Pad >
|
|
using pad_opt = seq< star< Pad >, opt< Rule, star< Pad > > >;
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace tao_json_pegtl
|
|
|
|
#endif
|