/* ==================================================================== * Copyright (c) 2003-2006, Martin Hauner * http://subcommander.tigris.org * * Subcommander is licensed as described in the file doc/COPYING, which * you should have received as part of this distribution. * ==================================================================== */ #ifndef _SVN_BLAMEBATON_H #define _SVN_BLAMEBATON_H namespace svn { class BlameLine; /** * This interface combines subversions void* blame_baton and * svn_client_blame_receiver_t. */ class BlameBaton { public: virtual ~BlameBaton() {} virtual void receive( const BlameLine* line ) = 0; }; } // namespace #endif // _SVN_BLAMEBATON_H