ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / utilities / postProcessing / graphics / ensightFoamReader / USERD_get_descrip_lines.H
blob1076d2de38d8268db29aec707221e5da54daaf70
1 //======================================================================
2 int USERD_get_descrip_lines
4     int which_type,
5     int which_var,
6     int imag_data,
7     char line1[Z_BUFL],
8     char line2[Z_BUFL]
11 #ifdef ENSIGHTDEBUG
12     Info<< "Entering: USERD_get_descrip_lines" << endl
13         << flush;
14 #endif
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     }
26 #ifdef ENSIGHTDEBUG
27     Info<< "Leaving: USERD_get_descrip_lines" << endl
28         << flush;
29 #endif
30     return Z_OK;