1 
2 /* Web Polygraph       http://www.web-polygraph.org/
3  * Copyright 2003-2011 The Measurement Factory
4  * Licensed under the Apache License, Version 2.0 */
5 
6 #ifndef POLYGRAPH__CSM_RNDBODYITER_H
7 #define POLYGRAPH__CSM_RNDBODYITER_H
8 
9 #include "csm/BodyIter.h"
10 
11 class RndBodyIter: public BodyIter {
12 	public:
13 		virtual RndBodyIter *clone() const;
14 
15 	protected:
16 		virtual bool pourMiddle();
17 		virtual void calcContentSize() const;
18 };
19 
20 #endif
21