secureswitools/swisistools/source/sisxlibrary/sistime.cpp
changeset 26 04d4a7bbc3e0
parent 0 ba25891c3a9e
equal deleted inserted replaced
25:98b66e4fb0be 26:04d4a7bbc3e0
    74 	iHours = aHours;
    74 	iHours = aHours;
    75 	iMinutes = aMinutes;
    75 	iMinutes = aMinutes;
    76 	iSeconds = aSeconds;
    76 	iSeconds = aSeconds;
    77 	}
    77 	}
    78 
    78 
    79 void CSISTime::AddPackageEntry(std::wostream& aStream, bool aVerbose) const
    79 void CSISTime::AddPackageEntry(std::wostream& aStream, bool aVerbose, bool aCompatible) const
    80 	{
    80 	{
    81 	aStream << static_cast<int>(iHours)		<< L":"; 
    81 	aStream << static_cast<int>(iHours)		<< L":"; 
    82 	aStream << static_cast<int>(iMinutes)	<< L":";
    82 	aStream << static_cast<int>(iMinutes)	<< L":";
    83 	aStream << static_cast<int>(iSeconds);
    83 	aStream << static_cast<int>(iSeconds);
    84 	}
    84 	}