aboutsummaryrefslogtreecommitdiff
path: root/src/tafreader.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-04-14 22:36:34 +0000
committerMike Buland <eichlan@xagasoft.com>2008-04-14 22:36:34 +0000
commitd416848a9c212bf0503ec5b9de4cd23449ecd73c (patch)
tree60766f975beff8bdf99bb8b1fcbce044d060c02c /src/tafreader.cpp
parent37f43e6004b979a48aa99609264d12511023a956 (diff)
downloadlibbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.tar.gz
libbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.tar.bz2
libbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.tar.xz
libbu++-d416848a9c212bf0503ec5b9de4cd23449ecd73c.zip
The Bu::TafReader parser now knows about \\, \t, and \n escape sequences. The
writer also knows about \\, but will not insert \t or \n for now. It just uses a tab and newline for those.
Diffstat (limited to 'src/tafreader.cpp')
-rw-r--r--src/tafreader.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tafreader.cpp b/src/tafreader.cpp
index 7b5e65d..db2e9f5 100644
--- a/src/tafreader.cpp
+++ b/src/tafreader.cpp
@@ -146,6 +146,12 @@ Bu::FString Bu::TafReader::readStr()
146 } 146 }
147 else if( c == '"' ) 147 else if( c == '"' )
148 c = '"'; 148 c = '"';
149 else if( c == '\\' )
150 c = '\\';
151 else if( c == 'n' )
152 c = '\n';
153 else if( c == 't' )
154 c = '\t';
149 else 155 else
150 throw TafException("Invalid escape sequence at %d:%d.", iLine, iCol ); 156 throw TafException("Invalid escape sequence at %d:%d.", iLine, iCol );
151 } 157 }