NetDest.hh (7454:3a3e8e8cce1b) NetDest.hh (7780:42da07116e12)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 41 unchanged lines hidden (view full) ---

50 // creates and empty set
51 NetDest();
52 explicit NetDest(int bit_size);
53
54 NetDest& operator=(const Set& obj);
55
56 ~NetDest()
57 {
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 41 unchanged lines hidden (view full) ---

50 // creates and empty set
51 NetDest();
52 explicit NetDest(int bit_size);
53
54 NetDest& operator=(const Set& obj);
55
56 ~NetDest()
57 {
58 DEBUG_MSG(MEMORY_COMP, LowPrio, "NetDest Destructor");
58 DPRINTF(RubyMemory, "NetDest Destructor\n");
59 }
60
61 void add(MachineID newElement);
62 void addNetDest(const NetDest& netDest);
63 void addRandom();
64 void setNetDest(MachineType machine, const Set& set);
65 void remove(MachineID oldElement);
66 void removeNetDest(const NetDest& netDest);

--- 68 unchanged lines hidden ---
59 }
60
61 void add(MachineID newElement);
62 void addNetDest(const NetDest& netDest);
63 void addRandom();
64 void setNetDest(MachineType machine, const Set& set);
65 void remove(MachineID oldElement);
66 void removeNetDest(const NetDest& netDest);

--- 68 unchanged lines hidden ---