pvAccessCPP  7.1.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
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 
17 namespace epics {
18 namespace pvAccess {
19 
24 class epicsShareClass Wildcard
25 {
26 
27 public:
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:24