123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef STRINGMATCHING_H_
- #define STRINGMATCHING_H_
- #ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC
- namespace eprosima {
- namespace fastrtps{
- namespace rtps {
- class StringMatching
- {
- public:
- StringMatching();
- virtual ~StringMatching();
-
- static bool matchString(const char* pattern,const char* input);
- };
- }
- }
- }
- #endif
- #endif /* STRINGMATCHING_H_ */
|