source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Signal_get_is_map.cpp @ 44

Last change on this file since 44 was 44, checked in by rosiere, 17 years ago

Modification des classes d'encapsulation des interfaces.
Stable sur tous les composants actuels

File size: 486 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Signal.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#undef  FUNCTION
15#define FUNCTION "Signal::get_is_map"
16  bool Signal::get_is_map (void)
17  {
18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19    uint32_t _return = _is_map;
20    log_printf(FUNC,Behavioural,FUNCTION,"End");
21
22    return _return;
23  };
24
25}; // end namespace behavioural         
26}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.