pvAccessCPP 7.1.8
Loading...
Searching...
No Matches
wildcard.h
1
7/*******************************************************************
8 * Implementation of glob-style wildcard pattern matching.
9 * Supported wild-card characters: '*', '?'
10 */
11
12#ifndef WILDCARD_H
13#define WILDCARD_H
14
15#include <shareLib.h>
16
17namespace epics {
18namespace pvAccess {
19
24class epicsShareClass Wildcard
25{
26
27public:
28
36 static int wildcardfit (const char *wildcard, const char *test);
37};
38
39}
40}
41
42
43#endif
44
Class which implements wildcard patterns and checks to see if a string matches a given pattern.
Definition wildcard.h:25
static int wildcardfit(const char *wildcard, const char *test)
This function implements wildcard pattern matching.
Copyright - See the COPYRIGHT that is included with this distribution.