Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2007-10-21 23:02:47 +0000
committerStijn Buys <ingar@osirion.org>2007-10-21 23:02:47 +0000
commita237a2d7723b94df6cd3e91401ec28388de6f1a0 (patch)
tree7da376d276d03fced7b94a807c0952fd32bcde08 /src/common/color.h
parent084c6212afaa6f996091f36d0ff85ac845803a87 (diff)
namespace cleanup
Diffstat (limited to 'src/common/color.h')
-rw-r--r--src/common/color.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/color.h b/src/common/color.h
index d84d1a3..e6aa9eb 100644
--- a/src/common/color.h
+++ b/src/common/color.h
@@ -1,11 +1,7 @@
/*
- ***************************************************************************
- * Copyright (C) 2004 by Stijn Buys *
- * stijn.buys@pandora.be *
- * *
- * This software is redistributed under the terms of the *
- * GNU General Public License. Please read LICENSE.txt. *
- ***************************************************************************
+ common/color.h
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
*/
#ifndef __COLOR_HEADER__
@@ -13,6 +9,8 @@
#include <iostream>
+namespace common {
+
/// a class representing an RGBA color value
class Color {
public:
@@ -47,4 +45,6 @@ std::ostream &operator<<(std::ostream &os, const Color &c);
Color operator*(const float scalar, const Color& color);
+} // namespace commmon
+
#endif // ___HEADER__