polserver/pol-core/bscript/contiter.h
turley 189cad3479 Formating everything
Authors are not forced to use the clang-format setting, but should
atleast be inspired by the style.
The only thing which is now not allowed are tabs for ident/alignment!
2016-02-19 19:26:35 +01:00

26 lines
336 B
C++

/** @file
*
* @par History
*/
#ifndef BSCRIPT_CONTITER_H
#define BSCRIPT_CONTITER_H
namespace Pol
{
namespace Bscript
{
class ContIterator : public BObjectImp
{
public:
ContIterator();
virtual BObject* step();
BObjectImp* copy( void ) const;
size_t sizeEstimate() const;
std::string getStringRep() const;
};
}
}
#endif