1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 21:05:27 +03:00

Added missing #includes.

Fixes compilation with GCC 4.7.0.
This commit is contained in:
Maarten ter Huurne 2012-03-24 12:00:25 +01:00
parent 57ad81e3df
commit d2413d8233
3 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@
#include <algorithm>
#include <math.h>
#include <fstream>
#include <unistd.h>
#include "gmenu2x.h"
#include "linkapp.h"

View File

@ -23,6 +23,8 @@
#include <SDL_gfxPrimitives.h>
#include <unistd.h>
using namespace std;
MessageBox::MessageBox(GMenu2X *gmenu2x, const string &text, const string &icon) {

View File

@ -32,6 +32,7 @@
#include <fstream>
#include <iostream>
#include <strings.h>
#include <unistd.h>
using namespace std;