Name | Modified | Size | Downloads / Week |
---|---|---|---|
exes | 2015-10-22 | ||
desc_data_diary | 2015-10-22 | ||
descdatadiary_0_3_0 | 2009-07-03 | ||
OldFiles | 2006-09-20 | ||
descdata_dictionary | 2005-08-31 | ||
Readme.txt | 2015-10-20 | 691 Bytes | |
DescDataDiary_0_3_2.7z | 2015-10-20 | 9.9 MB | |
Totals: 7 Items | 9.9 MB | 0 |
This version of Descriptive Data Diary brings the project up to date Visual Studio 2010 Express. The changes made were related to coding that was allowed in earlier compilers, but no longer. The biggest change was due to the practice of saving std::vector iterators as pointers. That had major implications for the WordEntry structure. It has some fields of type void * . The member was then cast as any one of dictionary entry types. That doesnt cut it anymore and I defined a base class for WordEntry and derived classes for each dictionary. More coding, but more type safe. I also tried to eliminate warnings due to obsolete functions such as strcpy replacing them with StringCchCopy .