source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/XML_get_body.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 16 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 830 bytes
Line 
1/*
2 * $Id: XML_get_body.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/XML.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13#undef  FUNCTION
14#define FUNCTION "XML::get_body"
15  std::string XML::get_body (void)
16  {
17    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
18    log_printf(FUNC,Behavioural,FUNCTION,"End");
19    return _body;
20  };
21
22  std::string XML::get_body (uint32_t depth)
23  {
24    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
25
26    std::string body = _body;
27    std::string tab  = indent(depth);
28
29    body.insert(0,tab);
30    for (size_t pos=body.find('\n',0); (pos<body.length()-1); pos=body.find('\n',++pos))
31      body.insert(++pos,tab);
32
33    log_printf(FUNC,Behavioural,FUNCTION,"End");
34    return body;
35  };
36
37}; // end namespace behavioural         
38}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.