source: gs2-extensions/ngramj/src/wiki/wikipedia2text/wiki2xml/TXML.h@ 25141

Last change on this file since 25141 was 25141, checked in by papitha, 12 years ago

NGRAMJ PERL MODULE ADDED /MAORI LANGUAGE GUESSING WORKING WELL!!

File size: 483 bytes
Line 
1#ifndef _TXML_H_
2#define _TXML_H_
3
4#include "global.h"
5
6class TXML
7 {
8 public :
9 TXML () {} ;
10 TXML ( int f , int t , string &s , bool fix_comments = true ) ;
11 virtual void remove_at ( int pos ) ;
12 virtual void insert_at ( int pos ) ;
13
14 virtual void add_key_value ( string k , string v = "" ) ;
15 virtual string get_string () ;
16
17 // Variables
18 int from , to ;
19 bool closing , selfclosing ;
20 string name , text ;
21 vector <string> key , value ;
22 } ;
23
24#endif
Note: See TracBrowser for help on using the repository browser.