This commit is contained in:
Raynaldo Rivera 2010-02-13 04:48:57 +00:00
parent d3787c0c03
commit 16581113c9
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
// Copyright (c) 2008-2010 Raynaldo (Wildicv) Rivera, Joshua (Dark_Kilauea) Jones
// This file is part of the "cAudio Engine"
// For conditions of distribution and use, see copyright notice in cAudio.h
#ifndef IMANAGEREVENTHANDLER_H
#define IMANAGEREVENTHANDLER_H
namespace cAudio{
class IManagerEventHandler
{
public:
//! This function is called on manager initialization
virtual void onInit() = 0;
//! This function is called on manager update
virtual void onUpdate() = 0;
//! This function is called on manager release
virtual void onRelease() = 0;
//! This function is called on source creation
virtual void onSourceCreate() = 0;
//! This function is called on decoder registration
virtual void onDecoderRegister() = 0;
//! This function is called on data source registration
virtual void onDataSourceRegister() = 0;
};
};
#endif //! IMANAGEREVENTHANDLER_H