source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/XML.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: 640 bytes
RevLine 
[2]1/*
2 * $Id: XML.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::XML"
[71]15  XML::XML  (std::string name) :
[3]16    _name (name)
[2]17  {
[43]18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[88]19    _filename_extension=".xml";
[43]20    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]21  };
22
[43]23#undef  FUNCTION
24#define FUNCTION "XML::~XML"
[2]25  XML::~XML () 
26  {
[43]27    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
28    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]29  };
30
31}; // end namespace behavioural         
32}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.