blob: 9ebf926f58d9503ee63a929516a31d5c4c533a34 (
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
|
// Copyright (C) 1999-2018
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"
#ifndef __tag_h__
#define __tag_h__
#include <iostream>
#include <sstream>
#include <iomanip>
using namespace std;
class Tag {
char* tag_;
Tag* previous_;
Tag* next_;
public:
Tag(const char*);
Tag(const Tag&);
Tag& operator=(const Tag&);
~Tag();
const char* tag() {return tag_;}
void set(const char*);
Tag* previous() {return previous_;}
void setPrevious(Tag* t) {previous_ = t;}
Tag* next() {return next_;}
void setNext(Tag* t) {next_ = t;}
};
#endif
|