COOPY » Guide
version 0.6.5
|
00001 #ifndef COOPY_MERGEOUTPUTVERBOSEDIFF 00002 #define COOPY_MERGEOUTPUTVERBOSEDIFF 00003 00004 #include <coopy/MergeOutput.h> 00005 00006 #include <string> 00007 00008 namespace coopy { 00009 namespace cmp { 00010 class MergeOutputVerboseDiff; 00011 } 00012 } 00013 00014 class coopy::cmp::MergeOutputVerboseDiff : public MergeOutput { 00015 public: 00016 virtual bool wantDiff() { return true; } 00017 virtual bool changeColumn(const OrderChange& change); 00018 virtual bool changeRow(const RowChange& change); 00019 virtual bool changeName(const NameChange& change); 00020 virtual bool changePool(const PoolChange& change); 00021 00022 virtual bool setSheet(const char *name); 00023 }; 00024 00025 #endif