1 
2 /******************************************************************************
3 * MODULE     : new_document.hpp
4 * DESCRIPTION: Management of the global TeXmacs tree
5 * COPYRIGHT  : (C) 1999-2011  Joris van der Hoeven
6 *******************************************************************************
7 * This software falls under the GNU general public license version 3 or later.
8 * It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
9 * in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
10 ******************************************************************************/
11 
12 #ifndef NEW_DOCUMENT_H
13 #define NEW_DOCUMENT_H
14 #include "tree.hpp"
15 #include "path.hpp"
16 
17 extern tree the_et;
18 
19 path new_document ();
20 void delete_document (path rp);
21 void set_document (path rp, tree t);
22 
23 #endif // NEW_DOCUMENT_H
24