7 #define epicsExportSharedSymbols    12 namespace epics { 
namespace nt {
    14 bool NTUtils::is_a(
const std::string &u1, 
const std::string &u2)
    17     size_t pos1 = u1.find_last_of(
'.');
    18     std::string su1 = (pos1 == string::npos) ? u1 : u1.substr(0, pos1);
    21     size_t pos2 = u2.find_last_of(
'.');
    22     std::string su2 = (pos2 == string::npos) ? u2 : u2.substr(0, pos2);
 
TODO only here because of the Lockable.