strarray.h #1

  • //
  • guest/
  • sam_stafford/
  • p4hl/
  • src/
  • dlls/
  • strarray.h
  • View
  • Commits
  • Open Download .zip Download (444 B)
/*
 * Copyright 1995, 1996 Perforce Software.  All rights reserved.
 */

/*
 * strarray.h - a 0 based array of StrBufs
 *
 * Class Defined:
 *
 *	StrArray - list of StrBufs *'s
 *
 * Public methods:
 *
 * Private methods:
 */

class VarArray;

class StrArray {
	
    public:

			StrArray();
			~StrArray();

	StrBuf *	Put();
	const StrBuf *	Get(int i);
	int		Count() const ;
	void		Sort( int caseFolding );

    private:

	VarArray	*array;
} ;
# Change User Description Committed
#1 937 Sam Stafford Renaming my guest directory to the more conventional
sam_stafford.
//guest/samwise/p4hl/src/dlls/strarray.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.