1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkWinCE.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include <stdio.h>
#include "vtkWinCE.h"
char *endl = "\n"; // declare endl here
ostream cout; // declare cout here
ostream cerr; // declare cerr here
istream cin; // declare cin here
ostream & ostream::operator <<(const char *str)
{
printf("%s",str); return *this;
}
ostream & ostream::operator <<(int x) // integers
{
printf("%d",x);
return *this;
}
ostream & ostream::operator <<(void *x) // integers
{
printf("%p",x);
return *this;
}
ostream & ostream::operator <<(unsigned int x) // integers
{
printf("%u",x);
return *this;
}
ostream & ostream::operator <<(long l) // long integers
{
printf( "%ld",l);
return *this;
}
ostream & ostream::operator <<(unsigned long l) // long integers
{
printf( "%lu",l);
return *this;
}
ostream & ostream::operator << (char ch) // characters
{
printf("%c",ch);
return *this;
}
ostream & ostream::operator <<(float fl ) // floats
{
printf("%f",fl);
return *this;
}
ostream & ostream::operator << (double dbl) // double floats
{
printf("%lf",dbl);
return *this;
}
////////////////////////// istream members ////////////////////////////////
istream & istream::operator >>(char *str) // strings
{
gets(str);
return *this;
}
istream & istream::operator >>(int &x) // integers
{
scanf("%d",&x);
return *this;
}
istream & istream::operator >> (char &ch) // characters
{
scanf("%c",&ch);
return *this;
}
istream & istream::operator >>(float &fl ) // floats
{
scanf("%f",&fl);
return *this;
}
istream & istream::operator >> (double &dbl ) // doubles
{
scanf("%lf",&dbl);
return *this;
}
|