home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
gnu
/
djgpp
/
src
/
libgplus.5
/
libgplus
/
etc
/
graph
/
eplotfil.cc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-05-04
|
248 b
|
14 lines
#pragma implementation
#include "ePlotFile.h"
ePlotFile& ePlotFile:: alabel (alabel_xadj x_adjust,
alabel_yadj y_adjust, const char *s)
{
cmd ('T');
cmd (x_adjust);
cmd (y_adjust);
*this << s;
*this << "\n";
return *this;
};