// FLDINFO.H
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#if !defined(__FLDINFO_H__)
#define __FLDINFO_H__

#if !defined(__E32STD_H__)
#include <e32std.h>
#endif


class TFindFieldInfo
// information returned from a "Find the fields in this range" request
	{
public:
	IMPORT_C TBool operator==(const TFindFieldInfo& aInfo)const;
	IMPORT_C TBool operator!=(const TFindFieldInfo& aInfo)const;
public:
	TInt iFieldCountInRange; // number of fields found in the specified range
	TInt iFirstFieldPos; // character position of the start of the first field in the range
	TInt iFirstFieldLen; // length of the first field in the range
	};


#endif