A few missing header includes

Originally committed to SVN as r1261.
This commit is contained in:
Rodrigo Braz Monteiro 2007-06-19 04:14:25 +00:00
parent 64c6c7ee07
commit e1df257ff4
4 changed files with 12 additions and 1 deletions

View File

@ -42,6 +42,7 @@
#include <wx/wxprec.h>
#include <fstream>
#include <list>
#include <vector>
//////////////

View File

@ -39,9 +39,17 @@
///////////
// Headers
#include <wx/wxprec.h>
#include <time.h>
#include <wx/wxprec.h>
#include <wx/glcanvas.h>
#include <list>
#ifdef HAVE_APPLE_OPENGL_FRAMEWORK
#include <OpenGL/GL.h>
#include <OpenGL/glu.h>
#else
#include <GL/gl.h>
#include <GL/glu.h>
#endif
#include "video_frame.h"

View File

@ -44,6 +44,7 @@
#include <windows.h>
#endif
#include <time.h>
#include <wx/glcanvas.h>
#include "video_context.h"

View File

@ -39,6 +39,7 @@
//////////
// Headers
#include <list>
#include "video_frame.h"
#include "factory.h"