c_fixed_length_record

Table Of Contents

Introduction, c_fixed_length_record

As it's name implies, the c_fixed_lenght_record object is meant to encapsulate a single fixed length record. It provides an interface to a collection of fixed length fields. Fields are inserte and retreived by name instead of by member function. This allows the fixed length record object to model virtualy any fixed length record data, provide access to fields, and provide the ability to add new fields to the record.

The fixed length field objects maintain a starting position, an ending position, as well as the data contained within the field. In conjunction with the fixed length field object, c_fixed_length_record also encapsulates the process of breaking up a fixed length line of data into fields.

API Refrence

Example Code:
put sample code here

Up