Code Reorganization - Silver Bullet

- Broke out Silver Bullet feature into separate edit.cpp file.
  Because it is big.
This commit is contained in:
Paul Beckingham
2009-05-13 12:35:54 -04:00
parent da8c3c1a16
commit ee06280808
5 changed files with 165 additions and 124 deletions

View File

@@ -90,7 +90,6 @@ std::string handleUndo (TDB&, T&, Config&);
std::string handleColor (Config&);
std::string handleAnnotate (TDB&, T&, Config&);
std::string handleDuplicate (TDB&, T&, Config&);
std::string handleEdit (TDB&, T&, Config&);
T findT (int, const std::vector <T>&);
int deltaAppend (T&, T&);
int deltaDescription (T&, T&);
@@ -98,6 +97,9 @@ int deltaTags (T&, T&);
int deltaAttributes (T&, T&);
int deltaSubstitutions (T&, T&);
// edit.cpp
std::string handleEdit (TDB&, T&, Config&);
// report.cpp
void filterSequence (std::vector<T>&, T&);
void filter (std::vector<T>&, T&);