From: Gerd von Egidy Date: Tue, 3 Feb 2009 10:34:01 +0000 (+0100) Subject: protect week.hpp against double-inclusion X-Git-Tag: v2.6~136^2~1 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=5305324b127b82437a5964a8b026873c6eea36c9;p=libi2ncommon protect week.hpp against double-inclusion --- diff --git a/src/week.hpp b/src/week.hpp index e50f7b8..a377ac6 100644 --- a/src/week.hpp +++ b/src/week.hpp @@ -7,6 +7,9 @@ * */ +#ifndef __WEEK_HPP +#define __WEEK_HPP + #include #include @@ -130,3 +133,5 @@ inline Week operator^(const Week& lhs, const Week& rhs) } } + +#endif