From f56da5d71083fe272ab42967bed01aa7d8e577d3 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Sat, 13 Mar 2004 11:15:36 +0000 Subject: Add missing #include of --- lib/Enum.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Enum.h b/lib/Enum.h index 11a2371..804e333 100644 --- a/lib/Enum.h +++ b/lib/Enum.h @@ -27,6 +27,7 @@ #include #endif +#include #include #include @@ -276,13 +277,13 @@ public: * // declaration of enumeration; somewhere * class rfsv { * [...] - * enum PSI_ERROR_CODES { E_PSI_GEN_NONE, E_PSI_GEN_FAIL, E_PSI_GEN_ARG }; + * enum PSI_ERROR_CODES { E_PSI_GEN_NONE, E_PSI_GEN_FAIL, E_PSI_GEN_ARG }; * [...] * }; * * // definition of the Enum with the appropriate string representations * ENUM_DEFINITION(rfsv::PSI_ERROR_CODES, - * rfsv::E_PSI_GEN_NONE) { + * rfsv::E_PSI_GEN_NONE) { * stringRep.add(rfsv::E_PSI_GEN_NONE, "no error"); * stringRep.add(rfsv::E_PSI_GEN_FAIL, "general"); * stringRep.add(rfsv::E_PSI_GEN_ARG, "bad argument"); -- cgit v1.2.3