DAUserAnnotate.h #1

  • //
  • guest/
  • sam_stafford/
  • deepannotate/
  • DAUserAnnotate.h
  • View
  • Commits
  • Open Download .zip Download (407 B)
// Must include clientapi.h

class ClientUser;
class DAFile;
class DARev;

class DAUserAnnotate :
	public ClientUser
{
public:
	DAUserAnnotate( DAFile* f, ClientUser* ui, bool quiet );
	~DAUserAnnotate(void);

	void OutputStat( StrDict* varList );
	void Message( Error* err );
	void OutputText( const char* data, int length );

private:
	DAFile* file;
	ClientUser* ui;
	bool quiet;
	bool done, seenFile;
};
# Change User Description Committed
#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.