blob: b483bdb13af67de7aa347ad614048f93ce6b2298 (
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
|
/*****************************************************************************
Copyright (C) 1994-2000 the Omega Project Team
Copyright (C) 2005-2011 Chun Chen
All Rights Reserved.
Purpose:
pseudo string code wrapper
Notes:
History:
04/17/96 - Lei Zhou - created
*****************************************************************************/
#ifndef _CG_STRINGREPR_H
#define _CG_STRINGREPR_H
#include <code_gen/CG_outputRepr.h>
#include <string>
#include <iostream>
#include <stdio.h>
namespace omega {
class CG_stringRepr: public CG_outputRepr {
private:
std::string s_;
public:
char *type() const { return strdup("string"); };
CG_stringRepr() {};
CG_stringRepr(const std::string &s){ s_ = s; }
~CG_stringRepr() {}
CG_outputRepr *clone() const { return new CG_stringRepr(s_); }
void dump() const { std::cout << s_ << std::endl; }
void Dump() const;
void DumpToFile(FILE *fp = stderr) const;
//---------------------------------------------------------------------------
// basic operation
//---------------------------------------------------------------------------
std::string GetString() const { return s_; }
};
}
#endif
|