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

Last change on this file since 31 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
Line 
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  {
15    _list_interface = new list<Interface>;
16  };
17
18  Interfaces::Interfaces  (const Interfaces & interfaces)
19  {
20    _list_interface = interfaces._list_interface;
21  };
22 
23  Interfaces::~Interfaces ()
24  {
25    delete _list_interface;
26  };
27 
28}; // end namespace behavioural         
29}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.