22 lines
501 B
C++
22 lines
501 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_HH
|
|
#define TAO_CPP_PEGTL_INTERNAL_PAD_HH
|
|
|
|
#include "seq.hh"
|
|
#include "star.hh"
|
|
|
|
namespace tao_json_pegtl
|
|
{
|
|
namespace internal
|
|
{
|
|
template< typename Rule, typename Pad1, typename Pad2 = Pad1 >
|
|
using pad = seq< star< Pad1 >, Rule, star< Pad2 > >;
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace tao_json_pegtl
|
|
|
|
#endif
|