clientloguser.h #5

  • //
  • guest/
  • sam_stafford/
  • p4hl/
  • src/
  • dlls/
  • clientloguser.h
  • View
  • Commits
  • Open Download .zip Download (642 B)
#ifndef CLIENTLOGUSER_H
#define CLIENTLOGUSER_H

/* The ClientLogUser subclass of ClientUser is used to build a FileLogCache - it should only
 * be used with calls to "p4 filelog". */

class ClientLogUser : public ClientUser  
{
public:
	ClientLogUser();
	virtual ~ClientLogUser();

	/* This method reads in a filelog and dumps it into a FileHead object.*/
	void OutputInfo(char, const_char*);

	FileHead* working; //This is the FileHead that we'll be modifying.
private:
	bool doneone; //error checking - set to true after level == '0'
	bool toomany; //error checking - set to true if (level == '0' && doneone)
};

#endif // CLIENTLOGUSER_H
# Change User Description Committed
#5 1689 Sam Stafford Integrate 02.1 API and code cleanup to P4HL.
 Lots of work.  Phew.
#4 1561 Sam Stafford Integ changes to P4HL for testing.
#3 1557 Sam Stafford Integrate bug fix for testing.
 Looks good so far.
#2 1548 Sam Stafford Integrate RevType change to make sure it works.
 It does.
#1 937 Sam Stafford Renaming my guest directory to the more conventional
sam_stafford.
//guest/samwise/p4hl/src/dlls/clientloguser.h
#1 936 Sam Stafford Adding P4HL to the public depot.
 See relnotes.txt for
installation instructions; all relevant files are under
p4hl/dist.

Source code is under p4hl/src in the form of a VC++ project.