Enhancements - T2 & Subst

- Implemented more helper functions in T2, prior to integration.
- Completed Subst.
- Completed Subst unit tests.
- Eliminated T::getAnnotationCount.
This commit is contained in:
Paul Beckingham 2009-05-31 23:43:11 -04:00
parent ccff27b535
commit 7248267a72
10 changed files with 149 additions and 71 deletions

View file

@ -28,7 +28,7 @@
#define INCLUDED_SUBST
#include <string>
#include <Record.h>
#include "Att.h"
class Subst
{
@ -40,7 +40,7 @@ public:
~Subst (); // Destructor
bool parse (const std::string&);
void apply (Record&) const;
void apply (std::string&, std::vector <Att>&) const;
public:
std::string mFrom;