public string ResponseDeclaration(ResponseCodeGen hResponse)
 {
     return string.Format("private {0} m_hResponse;", hResponse.Name);
 }
 public string ResponseAllocation(ResponseCodeGen hResponse)
 {
     return string.Format("m_hResponse = new {0}();", hResponse.Name);
 }