/* ==================================================================== * 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 _DIFFINFOTARGET_H #define _DIFFINFOTARGET_H class DiffInfo; class DiffInfoTarget { public: virtual ~DiffInfoTarget() {} //virtual void addConflict( int line ) = 0; virtual void addDiffInfo( const DiffInfo& ) = 0; }; #endif // _DIFFINFOTARGET_H