Return description of the mimetype Pointer to const string being MIME type description

Return TypeFunction nameArguments
const char*Mimetype2Txt(hzMimetype,)

Declared in file: hzMimetype.h
Defined in file : hzTypes.cpp

Function Logic:

0:START 1:unknown 2:items 3:m 4:Return *m.S

Function body:

const char* Mimetype2Txt (hzMimetype mtype)
{
   //  Category: Diagnostics
   //  
   //  Return description of the mimetype
   //  
   //  Arguments: 1) mtype The enumerated MIME type
   //  
   //  Returns: Pointer to const string being MIME type description
   if (!s_mimesEnum.Count())
       HadronZooInitMimes() ;
   _mimeType   m ;     //  MIME type info
   m = s_mimesEnum[mtype] ;
   return *m.S ;
}