blob: 0e7d6a02e85fa800f6559b9d0cb2b8be55c19b08 [file] [log] [blame]
Yingdi Yu5e974202014-01-29 16:59:06 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/**
3 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Yingdi Yu <yingdi@cs.ucla.edu>
5 * See COPYING for copyright and distribution information.
6 */
7
8#ifndef NDN_REGEX_HPP
9#define NDN_REGEX_HPP
10
11#include "regex/regex-top-matcher.hpp"
12
13namespace ndn
14{
15
16typedef RegexTopMatcher Regex;
17
18}
19
20#endif
21