~ubuntu-branches/ubuntu/saucy/texmacs/saucy

« back to all changes in this revision

Viewing changes to src/Data/Drd/tag_info.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2011-04-04 13:58:09 UTC
  • mfrom: (4.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110404135809-6f6jvotefb694vgp
Tags: 1:1.0.7.10-1
* New Upstream Release.
* Added gostscript to Build-Depends.  (Closes: #582228)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#define TAG_INFO_H
14
14
#include "tree.hpp"
15
15
 
16
 
int  drd_encode (tree t);
17
 
tree drd_decode (int i);
18
 
 
19
16
#define TYPE_INVALID         -1
20
17
#define TYPE_REGULAR          0
21
18
#define TYPE_ADHOC            1
39
36
#define TYPE_UNKNOWN         19
40
37
#define TYPE_ERROR           20
41
38
 
 
39
int    drd_encode (tree t);
 
40
tree   drd_decode (int i);
 
41
int    drd_encode_type (string s);
 
42
string drd_decode_type (int i);
 
43
 
42
44
/******************************************************************************
43
45
* The parent_info class contains outer information about tags
44
46
*
197
199
  tag_info enable_writable (int i);
198
200
  tag_info locals (int i, string var, string val);
199
201
  tag_info name (string s);
 
202
  tag_info long_name (string s);
 
203
  tag_info name (int i, string s);
 
204
  tag_info long_name (int i, string s);
200
205
  int      get_index (int child, int n);
201
206
  void     set_attribute (string which, tree val);
202
207
  tree     get_attribute (string which);