diff src/txt-eng.h @ 12405:80666cb91c4c release-3-4-x

Remove parts of previous changset that weren't supposed to be committed
author David Bateman <dbateman@free.fr>
date Sun, 06 Feb 2011 23:29:16 +0100
parents 6001e10ce152
children 72c96de7a403
line wrap: on
line diff
--- a/src/txt-eng.h	Sun Feb 06 23:25:31 2011 +0100
+++ b/src/txt-eng.h	Sun Feb 06 23:29:16 2011 +0100
@@ -190,32 +190,4 @@
     }
 };
 
-class
-OCTINTERP_API
-text_parser_tex : public text_parser
-{
-public:
-  text_parser_tex (void) : text_parser () { }
-
-  ~text_parser_tex (void) { }
-
-  // FIXME: is it possible to use reference counting to manage the
-  // memory for the object returned by the text parser?  That would be
-  // preferable to having to know when and where to delete the object it
-  // creates...
-
-  text_element* parse (const std::string& s);
-
- private:
-  text_element_list lst;
-  mutable size_t anchor;
-  
-  std::string getargument(const std::string& s, size_t start) const;
-  
-  size_t matchbrace(const std::string& s, size_t start) const;
-  
-
-
-};
-
 #endif