normativeTypesCPP
ntutils.h
Go to the documentation of this file.
1 /* ntutils.h */
2 /*
3  * Copyright information and license terms for this software can be
4  * found in the file LICENSE that is included with the distribution
5  */
6 #ifndef NTUTILS_H
7 #define NTUTILS_H
8 
9 #include <string>
10 #include <shareLib.h>
11 
12 namespace epics { namespace nt {
13 
19 class epicsShareClass NTUtils {
20 public:
21 
29  static bool is_a(const std::string &u1, const std::string &u2);
30 
31 private:
32  // disable object creation
33  NTUtils() {}
34 };
35 
36 }}
37 
38 #endif /* NTUTILS_H */
39 
Utility methods for NT types.
Definition: ntutils.h:19