source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces.cpp @ 36

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

Class Position qui encapsule la génération des fichiers de positions

File size: 513 bytes
RevLine 
[29]1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interfaces.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13  Interfaces::Interfaces  (void)
14  {
[31]15    _list_interface = new list<Interface>;
[29]16  };
[31]17
18  Interfaces::Interfaces  (const Interfaces & interfaces)
19  {
20    _list_interface = interfaces._list_interface;
21  };
[29]22 
23  Interfaces::~Interfaces ()
24  {
[31]25    delete _list_interface;
[29]26  };
27 
28}; // end namespace behavioural         
29}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.