You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tellico/src/translators/pilotdb/libflatfile/ListViewColumn.h

20 lines
463 B

#ifndef __PALMLIB_FLATFILE_LISTVIEWCOLUMN_H__
#define __PALMLIB_FLATFILE_LISTVIEWCOLUMN_H__
namespace PalmLib {
namespace FlatFile {
// The ListViewColumn class stores the field number and column
// width for a column in a list view.
struct ListViewColumn {
ListViewColumn() : field(0), width(80) { }
ListViewColumn(unsigned a1, unsigned a2) : field(a1), width(a2) { }
unsigned field;
unsigned width;
};
}
}
#endif