stuck on OpenAL
Hi, I wonder if you guys can offer a second pair of eyes on this. I am writing a basic audio library (container as opposed to function library)
syntax error : identifier 'AudioLibrary' line 89
I can't see why since it doesn't have a problem with my includes.
NB I'm using VS2008
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#pragma once
#include "./Frame.h"
#include "./AudioLibrary.h"
#define MAX_FRAMES 10
class Troop
{
SoundGroup* soundGroup;//Sound collection to use
//struct declared in AudioLibrary.h
public:
Troop(void);
~Troop(void);
void getSounds(AudioLibrary* audioLib);//C2061
};
|
Where is the AudioLibrary type declared/defined?? In AudioLibrary.h ??
Topic archived. No new replies allowed.