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
RevLine 
[2]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
[43]13#undef  FUNCTION
14#define FUNCTION "XML::get_body"
[71]15  std::string XML::get_body (void)
[2]16  {
[43]17    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
18    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]19    return _body;
20  };
21
[71]22  std::string XML::get_body (uint32_t depth)
[3]23  {
[43]24    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
25
[88]26    std::string body = _body;
27    std::string tab  = indent(depth);
[3]28
[88]29    body.insert(0,tab);
[83]30    for (size_t pos=body.find('\n',0); (pos<body.length()-1); pos=body.find('\n',++pos))
[88]31      body.insert(++pos,tab);
[3]32
[43]33    log_printf(FUNC,Behavioural,FUNCTION,"End");
[3]34    return body;
35  };
36
[2]37}; // end namespace behavioural         
38}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.