source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Queue/src/Parameters_msg_error.cpp @ 67

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

Ajout d'un nouveau composant : fifo generic (un port lecture et un port ecriture).

File size: 640 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Types.h"
9#include "Behavioural/Generic/Queue/include/Parameters.h"
10#include <sstream>
11using namespace std;
12
13namespace morpheo                    {
14namespace behavioural {
15namespace generic {
16namespace queue {
17
18
19#undef  FUNCTION
20#define FUNCTION "Queue::msg_error"
21  string Parameters::msg_error(void)
22  {
23    log_printf(FUNC,Queue,FUNCTION,"Begin");
24
25    string msg = "";
26
27    return msg;
28
29    log_printf(FUNC,Queue,FUNCTION,"End");
30  };
31
32}; // end namespace queue
33}; // end namespace generic
34
35}; // end namespace behavioural
36}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.