f6e4cbb952
definitions). * Minor cleanup here and there. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22577 a95241bf-73f2-0310-859d-f6bbb57e9c96
44 lines
819 B
C++
44 lines
819 B
C++
/*
|
|
* Copyright 2001-2007, Haiku Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Marc Flerackers (mflerackers@androme.be)
|
|
* Stefano Ceccherini (stefano.ceccherini@gmail.com)
|
|
* Marcus Overhagen (marcus@overhagen.de)
|
|
*/
|
|
#ifndef _PICTURE_PLAYER_H
|
|
#define _PICTURE_PLAYER_H
|
|
|
|
/*! PicturePlayer is used to play picture data. */
|
|
|
|
|
|
#include <GraphicsDefs.h>
|
|
#include <Point.h>
|
|
#include <Rect.h>
|
|
#include <DataIO.h>
|
|
|
|
class BList;
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
class PicturePlayer {
|
|
public:
|
|
PicturePlayer();
|
|
PicturePlayer(const void *data, size_t size, BList *pictures);
|
|
virtual ~PicturePlayer();
|
|
|
|
status_t Play(void **callBackTable, int32 tableEntries,
|
|
void *userData);
|
|
|
|
private:
|
|
const void* fData;
|
|
size_t fSize;
|
|
BList* fPictures;
|
|
};
|
|
|
|
} // namespace BPrivate
|
|
|
|
#endif // _PICTURE_PLAYER_H
|