]> git.donarmstrong.com Git - lilypond.git/blob - lily/ps-stream.cc
patch::: 1.0.12.jcn2: opniewvisite
[lilypond.git] / lily / ps-stream.cc
1 /*
2   tex-stream.cc -- implement Ps_stream
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include <fstream.h>
11 #include <time.h>
12
13 #include "main.hh"
14 #include "ps-stream.hh"
15 #include "debug.hh"
16
17 Ps_stream::Ps_stream (String filename)
18   : Paper_stream (filename)
19 {
20   header ();
21 }
22
23 void
24 Ps_stream::header ()
25 {
26   *os << _ ("%%!PS Adobe\n");
27   // urg, merge with Tex
28   *os << _ ("% Creator: ");
29   if (no_timestamps_global_b)
30     *os << "GNU LilyPond\n";
31   else
32     *os << get_version_str () << '\n';
33   *os << _ ("% Automatically generated");
34   if (no_timestamps_global_b)
35     *os << ".\n";
36   else
37     {
38       *os << _ (", at ");
39       time_t t (time (0));
40       *os << ctime (&t) << "%\n";
41     }
42 }
43
44 Ps_stream::~Ps_stream ()
45 {
46 }
47
48 // print string. don't forget indent.
49 Paper_stream&
50 Ps_stream::operator << (Scalar s)
51 {
52   return Paper_stream::operator << (s);
53 }
54