clientloguser.h #2

  • //
  • guest/
  • sam_stafford/
  • p4hl/
  • src/
  • dlls/
  • clientloguser.h
  • View
  • Commits
  • Open Download .zip Download (1 KB)
// clientloguser.h: interface for the clientloguser class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CLIENTLOGUSER_H__90B15295_1B31_44BE_AD82_9CD3793CB01D__INCLUDED_)
#define AFX_CLIENTLOGUSER_H__90B15295_1B31_44BE_AD82_9CD3793CB01D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "error.h"
#include "strbuf.h"
#include "filesys.h"
#include "FileHead.h"
#include "clientuser.h"
#include "FileLogCache.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.
	bool toomany; //error checking, set to true if more than one file processed
};

#endif // !defined(AFX_CLIENTLOGUSER_H__90B15295_1B31_44BE_AD82_9CD3793CB01D__INCLUDED_)
# 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.