diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-21 22:35:47 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-21 22:35:47 -0600 |
commit | ab016596602a4c6bdc27adf01c308b325af221f0 (patch) | |
tree | 4e86bfcf1f38fb00cc58082d540dc3570e0f126b /lib/codegen/src/CG_stringRepr.cc | |
parent | 6983c09937baac3ffb7d3a45c3c5009c0eba7e6c (diff) | |
download | chill-ab016596602a4c6bdc27adf01c308b325af221f0.tar.gz chill-ab016596602a4c6bdc27adf01c308b325af221f0.tar.bz2 chill-ab016596602a4c6bdc27adf01c308b325af221f0.zip |
something that only builds ...
Diffstat (limited to 'lib/codegen/src/CG_stringRepr.cc')
-rwxr-xr-x | lib/codegen/src/CG_stringRepr.cc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/codegen/src/CG_stringRepr.cc b/lib/codegen/src/CG_stringRepr.cc new file mode 100755 index 0000000..f1a7cad --- /dev/null +++ b/lib/codegen/src/CG_stringRepr.cc @@ -0,0 +1,32 @@ +/***************************************************************************** + Copyright (C) 1994-2000 University of Maryland + Copyright (C) 2008 University of Southern California + Copyright (C) 2009 University of Utah + All Rights Reserved. + + Purpose: + omega holder for string implementation. + + Notes: + + History: + 04/17/96 - Lei Zhou - created +*****************************************************************************/ + + +#include <code_gen/CG_stringRepr.h> +#include <stdio.h> +#include <string.h> + +namespace omega { + + //----------------------------------------------------------------------------- + // Dump operations + //----------------------------------------------------------------------------- + void CG_stringRepr::Dump() const { dump(); } // TODO combine dump() and Dump() + + void CG_stringRepr::DumpToFile(FILE *fp) const { + fprintf(fp,"%s", s_.c_str()); + } + +} // namespace |