PlatformI2CFactory.h [plain text]
#include <IOKit/IOService.h>
#include <libkern/c++/OSString.h>
#include "AppleOnboardAudio.h"
#include "PlatformInterfaceI2C.h"
#ifndef __PlatformI2CFactory
#define __PlatformI2CFactory
class PlatformI2CFactory : public OSObject {
OSDeclareDefaultStructors ( PlatformI2CFactory );
public:
static PlatformInterfaceI2C * createPlatform ( const OSString* inPlatformSupportString );
private:
static const char * platformI2CMappedString;
static const char * platformI2CPlatformFunctionString;
};
#endif