blob: 9bb1e9fac8b68c16e24973385e9c97e6675b72b3 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Yingdi Yu <yingdi@cs.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_REGEX_PSEUDO_MATCHER_HPP
#define NDN_REGEX_PSEUDO_MATCHER_HPP
#include "regex-matcher.hpp"
namespace ndn
{
class RegexPseudoMatcher : public RegexMatcher
{
public:
RegexPseudoMatcher();
~RegexPseudoMatcher()
{}
virtual void
compile()
{}
void
setMatchResult(const std::string& str);
void
resetMatchResult();
};
}//ndn
#endif