From 86eac1d1d3e567825e0fe79d0248704a7e10d3ff Mon Sep 17 00:00:00 2001 From: Bryan Catanzaro Date: Wed, 4 Mar 2015 14:53:32 -0800 Subject: [PATCH] Add includes for compilation on Ubuntu 14.04. I'm using GCC 4.8.2. --- formatter.h | 3 ++- mixer.h | 3 ++- unzipper.h | 4 +++- zipper.h | 4 +++- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/formatter.h b/formatter.h index c2e9c0f..ea5e711 100644 --- a/formatter.h +++ b/formatter.h @@ -1,6 +1,7 @@ #ifndef FORMATTER_H #define FORMATTER_H +#include #include #include #include "macros.h" @@ -85,4 +86,4 @@ class Formatter : public ObjectWrap { } -#endif \ No newline at end of file +#endif diff --git a/mixer.h b/mixer.h index 1b2fa4a..83683b9 100644 --- a/mixer.h +++ b/mixer.h @@ -1,6 +1,7 @@ #ifndef MIXER_H #define MIXER_H +#include #include #include #include "macros.h" @@ -100,4 +101,4 @@ class Mixer : public ObjectWrap { } -#endif \ No newline at end of file +#endif diff --git a/unzipper.h b/unzipper.h index dfb13ee..f847782 100644 --- a/unzipper.h +++ b/unzipper.h @@ -1,6 +1,8 @@ #ifndef UNZIPPER_H #define UNZIPPER_H +#include +#include #include #include #include "macros.h" @@ -96,4 +98,4 @@ class Unzipper : public ObjectWrap { } -#endif \ No newline at end of file +#endif diff --git a/zipper.h b/zipper.h index e79315f..cfcdc1c 100644 --- a/zipper.h +++ b/zipper.h @@ -1,6 +1,8 @@ #ifndef ZIPPER_H #define ZIPPER_H +#include +#include #include #include #include "macros.h" @@ -103,4 +105,4 @@ class Zipper : public ObjectWrap { } -#endif \ No newline at end of file +#endif