1/*
2 * Copyright 2015, Haiku.
3 * Distributed under the terms of the MIT license.
4 *
5 * Authors:
6 *		Julian Harnath <julian.harnath@rwth-aachen.de>
7 */
8#ifndef PICTURE_BOUNDING_BOX_H
9#define PICTURE_BOUNDING_BOX_H
10
11
12class BRect;
13class DrawState;
14class ServerPicture;
15
16
17class PictureBoundingBoxPlayer {
18public:
19	class State;
20
21public:
22	static	void				Play(ServerPicture* picture,
23									const DrawState* drawState,
24									BRect* outBoundingBox);
25};
26
27
28#endif // PICTURE_BOUNDING_BOX_H
29