/* * Copyright (C) 2008 Stephan Aßmus * All rights reserved. Distributed under the terms of the MIT license. */ #ifndef TEST_H #define TEST_H #include class BView; class Test { public: Test(); virtual ~Test(); virtual void Prepare(BView* view) = 0; virtual bool RunIteration(BView* view) = 0; virtual void PrintResults(BView* view); void SetupClipping(BView* view); protected: BRegion fClippingRegion; }; #endif // TEST_H