source: trunk/SRC/Obsolete/imprime.pro @ 232

Last change on this file since 232 was 232, checked in by pinsard, 17 years ago

improvements/corrections of some *.pro headers

  • Property svn:keywords set to Id
File size: 900 bytes
Line 
1;+
2;
3; @file_comments
4; use printps instead...
5;
6; @obsolete
7;
8; @param filename {in}{required}
9;
10; @keyword TRANS
11;
12; @keyword NB
13;
14; @uses
15; printps
16;
17; @history
18; June 2005: Sebastien Masson, english version
19;
20; @version
21; $Id$
22;
23;-
24;
25PRO imprime, filename, TRANS = trans, NB = nb
26;
27; this is working only with unix/linux/osX machines
28;
29  compile_opt idl2, strictarrsubs, obsolete
30;
31  thisOS = strupcase(strmid(!version.os_family, 0, 3))
32  CASE thisOS OF
33    'MAC':return
34    'WIN':return
35    ELSE:
36  ENDCASE
37;------------------------------------------------------------
38; call printps
39;------------------------------------------------------------
40  CASE N_PARAMS() OF
41    0:printps
42    1:printps, filename
43    ELSE: BEGIN
44      ras = report('imprime accept only one element: psfilename')
45      return
46    END
47  ENDCASE
48;------------------------------------------------------------
49  return
50END
51
52
Note: See TracBrowser for help on using the repository browser.