00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef TORC_GENERIC_OM_NETDELAY_HPP
00017 #define TORC_GENERIC_OM_NETDELAY_HPP
00018
00019 #include "torc/generic/om/PointerTypes.hpp"
00020 #include "torc/generic/om/Derivation.hpp"
00021 #include "torc/generic/om/Value.hpp"
00022
00023 namespace torc {
00024
00025 namespace generic {
00026
00027
00028
00029
00030
00031
00032
00033 class NetDelay {
00034 public:
00035
00036
00037
00038
00039
00040 inline const Derivation
00041 getDerivation() const throw();
00042
00043
00044
00045
00046
00047
00048 void
00049 setDerivation(const Derivation & value) throw();
00050
00051
00052
00053
00054
00055
00056 inline const Value::MiNoMax
00057 getDelay() const throw();
00058
00059
00060
00061
00062
00063
00064 void
00065 setDelay(const Value::MiNoMax & value) throw();
00066
00067
00068
00069
00070
00071
00072 inline const LogicElementSharedPtr
00073 getTransition() const throw();
00074
00075
00076
00077
00078
00079
00080 void
00081 setTransition(const LogicElementSharedPtr & inSource) throw();
00082
00083 NetDelay();
00084
00085 ~NetDelay() throw();
00086
00087 NetDelay(const NetDelay & source) throw();
00088
00089 NetDelay &
00090 operator=(const NetDelay & source) throw();
00091
00092 private:
00093 Derivation mDerivation;
00094 Value::MiNoMax mDelay;
00095 LogicElementSharedPtr mTransition;
00096
00097 };
00098
00099
00100
00101
00102
00103 inline const Derivation
00104 NetDelay::getDerivation() const throw() {
00105 return mDerivation;
00106 }
00107
00108
00109
00110
00111
00112
00113 inline const Value::MiNoMax
00114 NetDelay::getDelay() const throw() {
00115 return mDelay;
00116 }
00117
00118
00119
00120
00121
00122
00123 inline const LogicElementSharedPtr
00124 NetDelay::getTransition() const throw() {
00125 return mTransition;
00126 }
00127
00128 }
00129
00130 }
00131 #endif // TORC_GENERIC_OM_NETDELAY_HPP