home *** CD-ROM | disk | FTP | other *** search
- #include "oofile.hpp"
-
- CLASS_TABLE(CdbPhoneControl)
- dbChar LastName;
- dbChar FirstName;
- dbChar Title;
- dbChar Extn;
- dbChar Department;
- dbChar Pager;
-
- CdbPhoneControl() : dbTable("PhoneControl") ,
- LastName(50, "LastName"),
- FirstName(30, "FirstName"),
- Title(50, "Title"),
- Extn(24, "Extn"),
- Department(50, "Department"),
- Pager(24, "Pager")
- {
- LastName.index(kIndexCompress);
- FirstName.index(kIndexCompress);
- Title.index(kIndexCompress);
- Extn.index(kIndexCompress);
- Department.index(kIndexCompress);
- Pager.index(kIndexCompress);
-
- };
- };
-
-