blob: 35b85e168564079f358a7d64896594da508c9e30 [file] [log] [blame]
Yingdi Yu5e974202014-01-29 16:59:06 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/**
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07003 * Copyright (c) 2013-2014, Regents of the University of California.
4 * All rights reserved.
5 *
6 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
7 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
8 *
9 * This file licensed under New BSD License. See COPYING for detailed information about
10 * ndn-cxx library copyright, permissions, and redistribution restrictions.
11 *
12 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
Yingdi Yu5e974202014-01-29 16:59:06 -080013 */
14
Alexander Afanasyev36b84cf2014-02-17 19:34:18 -080015#ifndef NDN_UTIL_REGEX_HPP
16#define NDN_UTIL_REGEX_HPP
Yingdi Yu5e974202014-01-29 16:59:06 -080017
18#include "regex/regex-top-matcher.hpp"
19
Alexander Afanasyev36b84cf2014-02-17 19:34:18 -080020namespace ndn {
Yingdi Yu5e974202014-01-29 16:59:06 -080021
22typedef RegexTopMatcher Regex;
23
Alexander Afanasyev36b84cf2014-02-17 19:34:18 -080024} // namespace ndn
Yingdi Yu5e974202014-01-29 16:59:06 -080025
Alexander Afanasyev36b84cf2014-02-17 19:34:18 -080026#endif // NDN_UTIL_REGEX_HPP