/* requester.cpp */ /** * Copyright - See the COPYRIGHT that is included with this distribution. * EPICS pvDataCPP is distributed subject to a Software License Agreement found * in file LICENSE that is included with this distribution. */ #include #include namespace epics { namespace pvData { const size_t messageTypeCount = 4; static std::string typeName[messageTypeCount] = { String("info"), String("warning"), String("error"), String("fatalError") }; StringArray messageTypeName = typeName; }}