Use doxygen style comments as per guidelines

Thanks Axel!
This commit is contained in:
John Scipione 2014-03-04 13:12:34 -05:00
parent 5b5f099fc0
commit 5adf9d6ee5

View File

@ -111,8 +111,8 @@ const uint32 kNumOutputFormats = sizeof(sOutputFormats) / sizeof(translation_for
const uint32 kNumDefaultSettings = sizeof(sDefaultSettings) / sizeof(TranSetting);
/* Look at first few bytes in stream to determine type - throw it back
* if it is not a GIF or a BBitmap that we understand.
/*! Look at first few bytes in stream to determine type - throw it back
if it is not a GIF or a BBitmap that we understand.
*/
bool
DetermineType(BPositionIO* source, bool* isGif)
@ -187,7 +187,7 @@ GetBitmap(BPositionIO* in, BBitmap** out)
}
/* Required identify function - may need to read entire header, not sure
/*! Required identify function - may need to read entire header, not sure
*/
status_t
GIFTranslator::DerivedIdentify(BPositionIO* inSource,
@ -231,8 +231,8 @@ GIFTranslator::DerivedIdentify(BPositionIO* inSource,
}
/* Main required function - assumes that an incoming GIF must be translated
* to a BBitmap, and vice versa - this could be improved
/*! Main required function - assumes that an incoming GIF must be translated
to a BBitmap, and vice versa - this could be improved
*/
status_t
GIFTranslator::DerivedTranslate(BPositionIO* inSource,