goat3dgfx

diff src/image.h @ 15:7d6b667821cf

wrapped everything in the goatgfx namespace
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 30 Nov 2013 20:52:21 +0200
parents 3d96734fd477
children
line diff
     1.1 --- a/src/image.h	Sat Nov 30 15:15:34 2013 +0200
     1.2 +++ b/src/image.h	Sat Nov 30 20:52:21 2013 +0200
     1.3 @@ -1,6 +1,7 @@
     1.4  #ifndef IMAGE_H_
     1.5  #define IMAGE_H_
     1.6  
     1.7 +namespace goatgfx {
     1.8  
     1.9  class Image {
    1.10  public:
    1.11 @@ -41,4 +42,6 @@
    1.12  	bool save(const char *fname) const;
    1.13  };
    1.14  
    1.15 +}	// namespace goatgfx
    1.16 +
    1.17  #endif	// IMAGE_H_