DAFileDict.h #1

  • //
  • guest/
  • sam_stafford/
  • deepannotate/
  • DAFileDict.h
  • View
  • Commits
  • Open Download .zip Download (239 B)
#include <vararray.h>

class DAFile;
class StrPtr;

class DAFileDict
{
public:
	DAFileDict(void);
	~DAFileDict(void);

	DAFile* Get( const StrPtr& path );
	bool	Put( const StrPtr& path, 
						DAFile* file );

private:
	VarArray array;
};
# Change User Description Committed
#2 6299 Sam Stafford Ditch the attempts at only processing lines that have already been
connected to the starting file.  It seemed to be causing more
backtracking than anything else when the history was complex, and
iterating through all files/revisions works just as well and isn't
nearly as prone to duplicating work.
#1 6297 Sam Stafford Work so far on "deep annotate".
 Been getting a lot of questions on
this lately from other people working on the same thing; might as well
pool efforts.