Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

TBEscapeHandler.h

Go to the documentation of this file.
00001 // TBEscapeHandler.h:
00002 // Haejoong Lee
00003 // Copyright (C) 2001 Linguistic Data Consortium, U Penn.
00004 // Web: http://www.ldc.upenn.edu/; Email: ldc@ldc.upenn.edu
00005 // For license information, see the file `LICENSE' included
00006 // with the distribution.
00007 
00008 
00009 #ifndef _TBESCAPEHANDLER_H_
00010 #define _TBESCAPEHANDLER_H_
00011 
00012 #include <string>
00013 #include "agfioError.h"   // for DllExport
00014 
00015 using namespace std;
00016 
00018 class DllExport TBEscapeHandler {
00019 private:
00020 public:
00021   virtual string
00022   decode(const string& cat, const string& s)
00023   { return s; }
00024 
00025   virtual string
00026   encode(const string& cat, const string& s)
00027   { return s; }
00028 };
00029 
00030 #endif

Generated at Wed Jul 3 14:54:04 2002 for Annotation Graph API by doxygen1.2.7 written by Dimitri van Heesch, © 1997-2001