Browse Source

try and fix header includes for gcc 2.95

master
aj_genius 21 years ago
parent
commit
be2e0b766a
4 changed files with 15 additions and 1 deletions
  1. +5
    -0
      SpiralSound/Plugins/DistributorPlugin/DistributorPlugin.C
  2. +4
    -0
      SpiralSound/Plugins/SplitterPlugin/SplitterPlugin.C
  3. +5
    -0
      SpiralSound/Plugins/TransposePlugin/TransposePlugin.C
  4. +1
    -1
      SpiralSynthModular.C

+ 5
- 0
SpiralSound/Plugins/DistributorPlugin/DistributorPlugin.C View File

@@ -15,6 +15,11 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <string>
#include <iostream>
#include <stdio.h>

#include "DistributorPlugin.h"
#include "DistributorPluginGUI.h"
#include <FL/Fl_Button.h>


+ 4
- 0
SpiralSound/Plugins/SplitterPlugin/SplitterPlugin.C View File

@@ -15,6 +15,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <string>
#include <iostream>
#include <stdio.h>

#include "SplitterPlugin.h"
#include "SplitterPluginGUI.h"
#include <FL/Fl_Button.h>


+ 5
- 0
SpiralSound/Plugins/TransposePlugin/TransposePlugin.C View File

@@ -16,6 +16,11 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <string>
#include <iostream>
#include <stdio.h>
#include <math.h>

#include "TransposePlugin.h"
#include "TransposePluginGUI.h"
#include "SpiralIcon.xpm"


+ 1
- 1
SpiralSynthModular.C View File

@@ -1459,7 +1459,7 @@ void SynthModular::LoadPatch(const char *fn)
if (in)
{
fstream inf;
inf.open(fn);
inf.open(fn, std::ios::in);
m_FilePath=fn;



Loading…
Cancel
Save