blob: 9bb1e9fac8b68c16e24973385e9c97e6675b72b3 [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_PSEUDO_MATCHER_HPP
9#define NDN_REGEX_PSEUDO_MATCHER_HPP
10
11#include "regex-matcher.hpp"
12
13namespace ndn
14{
15class RegexPseudoMatcher : public RegexMatcher
16{
17public:
18 RegexPseudoMatcher();
19
20 ~RegexPseudoMatcher()
21 {}
22
23 virtual void
24 compile()
25 {}
26
27 void
28 setMatchResult(const std::string& str);
29
30 void
31 resetMatchResult();
32};
33
34}//ndn
35
36#endif