port.hh (2982:0ecdb0879b14) port.hh (3074:e87fbe7941f8)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
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;

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

101 const std::string &name() const { return portName; }
102
103 virtual ~Port() {};
104
105 // mey be better to use subclasses & RTTI?
106 /** Holds the ports status. Currently just that a range recomputation needs
107 * to be done. */
108 enum Status {
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
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;

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

101 const std::string &name() const { return portName; }
102
103 virtual ~Port() {};
104
105 // mey be better to use subclasses & RTTI?
106 /** Holds the ports status. Currently just that a range recomputation needs
107 * to be done. */
108 enum Status {
109 RangeChange
109 RangeChange,
110 SnoopSquash
110 };
111
112 void setName(const std::string &name)
113 { portName = name; }
114
115 /** Function to set the pointer for the peer port.
116 @todo should be called by the configuration stuff (python).
117 */

--- 165 unchanged lines hidden ---
111 };
112
113 void setName(const std::string &name)
114 { portName = name; }
115
116 /** Function to set the pointer for the peer port.
117 @todo should be called by the configuration stuff (python).
118 */

--- 165 unchanged lines hidden ---