secureswitools/swisistools/source/sisxlibrary/sisdate.cpp
changeset 26 04d4a7bbc3e0
parent 0 ba25891c3a9e
equal deleted inserted replaced
25:98b66e4fb0be 26:04d4a7bbc3e0
    78 	iYear = aYear;
    78 	iYear = aYear;
    79 	iMonth = aMonth;
    79 	iMonth = aMonth;
    80 	iDay = aDay;
    80 	iDay = aDay;
    81 	}
    81 	}
    82 
    82 
    83 void CSISDate::AddPackageEntry(std::wostream& aStream, bool aVerbose) const
    83 void CSISDate::AddPackageEntry(std::wostream& aStream, bool aVerbose, bool aCompatible) const
    84 	{
    84 	{
    85 	// Month starts with 0
    85 	// Month starts with 0
    86 	aStream << static_cast<int>(iYear)		<< L"/";
    86 	aStream << static_cast<int>(iYear)		<< L"/";
    87 	aStream << static_cast<int>(iMonth)+1	<< L"/";
    87 	aStream << static_cast<int>(iMonth)+1	<< L"/";
    88 	aStream << static_cast<int>(iDay);
    88 	aStream << static_cast<int>(iDay);