goat3d

diff src/log.h @ 47:498ca7ac7047

- placed all the implementation stuff in the g3dimpl namespace - added animation stuff to the public API - started writing animation saving/loading
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 28 Dec 2013 06:47:39 +0200
parents cb6c1a945a11
children dad392c710df
line diff
     1.1 --- a/src/log.h	Sun Dec 08 03:00:25 2013 +0200
     1.2 +++ b/src/log.h	Sat Dec 28 06:47:39 2013 +0200
     1.3 @@ -1,8 +1,12 @@
     1.4  #ifndef LOG_H_
     1.5  #define LOG_H_
     1.6  
     1.7 +namespace g3dimpl {
     1.8 +
     1.9  enum { LOG_ERROR, LOG_INFO };
    1.10  
    1.11  void logmsg(int prio, const char *fmt, ...);
    1.12  
    1.13 +}	// namespace g3dimpl
    1.14 +
    1.15  #endif	// LOG_H_