/*
TestTokens.cc  -- Program to 

Author: Larry Morell

Modification History
Date        Action
03/10/06  -- Original version

*/
using namespace std;
#include <iostream>
#include <string>
#include "Tokens.h"
using namespace std;

int main () {
  Token t;
  setTokenSource("tags.dat");
  while (t.type() != eofSym) {
     cout << tokenTypeStr(t.type()) << endl;
     t.get();
  }
  return 0;
}


