source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/XML_balise_close.cpp @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 409 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/XML.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13  bool XML::balise_close ()
14  {
15    string name=*(_list_balise_name.begin());
16
17    _list_balise_name.pop_front();
18
19    _body += indent()+"</"+name+">\n";
20
21    return true;
22  };
23
24}; // end namespace behavioural         
25}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.