Changeset 1467 in Sophya for trunk/ArchTOIPipe/ProcWSophya/simtoipr.h
- Timestamp:
- Apr 12, 2001, 3:14:22 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/ProcWSophya/simtoipr.h
r1454 r1467 115 115 116 116 117 // Classe SimpleFanOut 118 // Transforme recopie chaque entree sur M lignes de sortie 119 120 class SimpleFanOut : public TOIProcessor { 121 public: 122 SimpleFanOut(int nbinput, int mfanout); 123 ~SimpleFanOut(); 124 125 inline int NbInput() const { return nb_input; } 126 inline int MFanOut() const { return m_fanout; } 127 inline int_8 ProcessedSampleCount() const { return totnscount; } 128 129 virtual void PrintStatus(ostream & os) ; // const plus tard 130 131 virtual void init(); 132 virtual void run(); 133 134 protected: 135 int nb_input; 136 int m_fanout; 137 int_8 totnscount; // Nombre total d'echantillon processe 138 }; 139 117 140 #endif
Note:
See TracChangeset
for help on using the changeset viewer.