FreeFOAM The Cross-Platform CFD Toolkit
USERD_get_descrip_lines.H
Go to the documentation of this file.
1 //======================================================================
3 (
4  int which_type,
5  int which_var,
6  int imag_data,
7  char line1[Z_BUFL],
8  char line2[Z_BUFL]
9 )
10 {
11 #ifdef ENSIGHTDEBUG
12  Info << "Entering: USERD_get_descrip_lines" << endl
13  << flush;
14 #endif
15 
16  if (which_type == Z_GEOM)
17  {
18  strncpy(line1, meshName, Z_BUFL);
19  strncpy(line2, "", Z_BUFL);
20  }
21  else
22  {
23  strncpy(line1, "WHERE IS THIS LINE USED I WONDER???", Z_BUFL);
24  }
25 
26 #ifdef ENSIGHTDEBUG
27  Info << "Leaving: USERD_get_descrip_lines" << endl
28  << flush;
29 #endif
30  return Z_OK;
31 }
32 
33 
34 // ************************ vim: set sw=4 sts=4 et: ************************ //