source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Signal_get_direction.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 505 bytes
Line 
1/*
2 * $Id: Signal_get_direction.cpp 81 2008-04-15 18:40:01Z rosiere $
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_direction"
16  direction_t Signal::get_direction (void)
17  {
18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19    direction_t _return = _direction;
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.