Always return a fixed value for the sample. */
| 601 | |
| 602 | /* Always return a fixed value for the sample. */ |
| 603 | class CFixed : public CSample |
| 604 | { |
| 605 | public: |
| 606 | CFixed(double value); |
| 607 | double sample(); |
| 608 | int textDescr(char *s, int len); |
| 609 | int timeDescr(char *s, int len); |
| 610 | double cdfInv(double percentile); |
| 611 | private: |
| 612 | double value; |
| 613 | }; |
| 614 | |
| 615 | /* Return the default scenario duration. */ |
| 616 | class CDefaultPause : public CSample |
nothing calls this directly
no outgoing calls
no test coverage detected