ChangeNode.cpp #1

  • //
  • guest/
  • samwise/
  • p4hl/
  • src/
  • dlls/
  • ChangeNode.cpp
  • View
  • Commits
  • Open Download .zip Download (529 B)
// ChangeNode.cpp: implementation of the ChangeNode class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "ChangeNode.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

ChangeNode::ChangeNode(StrBuf input)
{
	change = input;
	value = atoi((const char*) change.Text());
	next = NULL;
}

ChangeNode::~ChangeNode()
{
	if (next != NULL) delete next;
}
# Change User Description Committed
#2 937 Sam Stafford Renaming my guest directory to the more conventional
sam_stafford.
#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.