57 enum openMode {OVERWRITE, APPEND};
58 enum floatField {FIXEDD, SCIENTIFIC};
65 virtual int setFile(
const char *fileName, openMode mode = OVERWRITE) {
return 0;};
66 virtual int setPrecision(
int precision) {
return 0;};
67 virtual int setFloatField(floatField) {
return 0;};
68 virtual int precision(
int precision) {
return 0;};
69 virtual int width(
int width) {
return 0;};
71 virtual OPS_Stream& write(
const char *s,
int n) {
return *
this;};
72 virtual OPS_Stream& write(
const unsigned char *s,
int n) {
return *
this;};
73 virtual OPS_Stream& write(
const signed char *s,
int n) {
return *
this;};
74 virtual OPS_Stream& write(
const void *s,
int n) {
return *
this;};
76 virtual OPS_Stream& operator<<(
char c) {
return *
this;};
77 virtual OPS_Stream& operator<<(
unsigned char c) {
return *
this;};
78 virtual OPS_Stream& operator<<(
signed char c) {
return *
this;};
79 virtual OPS_Stream& operator<<(
const char *s) {
return *
this;};
80 virtual OPS_Stream& operator<<(
const std::string &s) {
return *
this;};
81 virtual OPS_Stream& operator<<(
const unsigned char *s) {
return *
this;};
82 virtual OPS_Stream& operator<<(
const signed char *s) {
return *
this;};
83 virtual OPS_Stream& operator<<(
const void *p) {
return *
this;};
84 virtual OPS_Stream& operator<<(
int n) {
return *
this;};
85 virtual OPS_Stream& operator<<(
unsigned int n) {
return *
this;};
86 virtual OPS_Stream& operator<<(
long n) {
return *
this;};
87 virtual OPS_Stream& operator<<(
unsigned long n) {
return *
this;};
88 virtual OPS_Stream& operator<<(
short n) {
return *
this;};
89 virtual OPS_Stream& operator<<(
unsigned short n) {
return *
this;};
90 virtual OPS_Stream& operator<<(
bool b) {
return *
this;};
91 virtual OPS_Stream& operator<<(
double n) {
return *
this;};
92 virtual OPS_Stream& operator<<(
float n) {
return *
this;};
Definition: OPS_Stream.h:60
================================================================================
Definition: ContinuaReprComponent.h:34