From f1f80e7b3b1e17e663113382219d992680461063 Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Wed, 30 Jul 2008 06:29:16 +0000 Subject: Related to QPID-1198: Moved posix platform specific "strerror" code to platform specific directory git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@680920 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/sys/StrError.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 cpp/src/qpid/sys/StrError.h (limited to 'cpp/src/qpid/sys/StrError.h') diff --git a/cpp/src/qpid/sys/StrError.h b/cpp/src/qpid/sys/StrError.h new file mode 100644 index 0000000000..3843f2abe1 --- /dev/null +++ b/cpp/src/qpid/sys/StrError.h @@ -0,0 +1,35 @@ +#ifndef _sys_StrError_h +#define _sys_StrError_h + +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ + +#include + +namespace qpid { +namespace sys { + +/** Get the error message for a system number err, e.g. errno. */ +std::string strError(int err); + +}} // namespace qpid + +#endif // _sys_StrError_h -- cgit v1.2.1