protect week.hpp against double-inclusion
authorGerd von Egidy <gerd.von.egidy@intra2net.com>
Tue, 3 Feb 2009 10:34:01 +0000 (11:34 +0100)
committerGerd von Egidy <gerd.von.egidy@intra2net.com>
Tue, 3 Feb 2009 10:34:01 +0000 (11:34 +0100)
src/week.hpp

index e50f7b8..a377ac6 100644 (file)
@@ -7,6 +7,9 @@
  *
  */
 
+#ifndef __WEEK_HPP
+#define __WEEK_HPP
+
 #include <string>
 #include <bitset>
 
@@ -130,3 +133,5 @@ inline Week operator^(const Week& lhs, const Week& rhs)
 
 }
 }
+
+#endif