C++ IP API  9.5.5
TCP & UDP for virtual user scripts
Pattern.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "fc.h"
4 #include <string>
5 using namespace std;
6 
7 namespace Facilita {
13  class FC_API Pattern {
14  private:
15 
16  protected:
17 
18  public:
19  Pattern();
20  virtual ~Pattern();
21  virtual int isSatisfiedBy(char ch) = 0;
22  virtual void reset() = 0;
23  virtual string toString() = 0;
24  };
25 }
STL namespace.
An Interface to which sub-classes must conform.
Definition: Pattern.h:13
Definition: IpEndPoint.h:9