blob: 145bebcd3166ef38fb52a8807360c95b72000587 (
plain)
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
|
// Copyright (C) 1999-2018
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"
#include "vectorstr.h"
#include "vector.h"
#include "util.h"
// VectorStr
VectorStr::~VectorStr()
{
if (c[0])
delete [] c[0];
if (c[1])
delete [] c[1];
}
VectorStr::VectorStr(const char* aa, const char* bb)
{
c[0] = dupstr(aa);
c[1] = dupstr(bb);
}
VectorStr::VectorStr(const VectorStr& vv)
{
c[0] = dupstr(vv.c[0]);
c[1] = dupstr(vv.c[1]);
}
VectorStr& VectorStr::operator=(const VectorStr& vv)
{
if (c[0])
delete [] c[0];
c[0]=dupstr(vv.c[0]);
if (c[1])
delete [] c[1];
c[1]=dupstr(vv.c[1]);
return *this;
}
ostream& operator<<(ostream& os, const VectorStr& vv)
{
unsigned char sep = (unsigned char)os.iword(Vector::separator);
if (!sep)
sep = ' ';
unsigned char unit = (unsigned char)os.iword(Vector::unit);
if (!unit)
os << vv.c[0] << sep << vv.c[1];
else
os << vv.c[0] << unit << sep << vv.c[1] << unit;
// reset unit
os.iword(Vector::unit) = '\0';
return os;
}
istream& operator>>(istream& ss, VectorStr& vv)
{
ss >> vv.c[0] >> vv.c[1];
return ss;
}
|