source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Model_get_type.cpp @ 129

Last change on this file since 129 was 129, checked in by rosiere, 15 years ago

1) Debug_Signal

  • Property svn:keywords set to Id
File size: 685 bytes
Line 
1/*
2 * $Id: Model_get_type.cpp 129 2009-06-29 16:38:40Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Model.h"
9#include "Common/include/Debug.h"
10
11namespace morpheo              {
12namespace behavioural          {
13
14#undef  FUNCTION
15#define FUNCTION "Model::get_type"
16  model_type_t Model::get_type (std::string component)
17  {
18//     log_begin(Behavioural,FUNCTION);
19
20    model_type_t _return;
21
22    std::map<std::string,model_t>::iterator it = models.find(component);
23
24    if (it != models.end())
25      _return = it->second.type;
26    else
27      _return = default_type;
28
29//     log_end(Behavioural,FUNCTION);
30
31    return _return;
32  }
33
34}; // end namespace behavioural         
35}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.