statistics.hh (3918:1f9a98d198e8) statistics.hh (3940:b87f85bb4275)
1/*
2 * Copyright (c) 2003-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;

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

393 /**
394 * Can't copy stats.
395 */
396 void operator=(const Wrap &);
397
398 public:
399 Wrap()
400 {
1/*
2 * Copyright (c) 2003-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;

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

393 /**
394 * Can't copy stats.
395 */
396 void operator=(const Wrap &);
397
398 public:
399 Wrap()
400 {
401 map(new Data(*this));
401 this->map(new Data<Child>(*this));
402 }
403
404 /**
405 * Set the name and marks this stat to print at the end of simulation.
406 * @param name The new name.
407 * @return A reference to this stat.
408 */
409 Parent &name(const std::string &_name)

--- 2481 unchanged lines hidden ---
402 }
403
404 /**
405 * Set the name and marks this stat to print at the end of simulation.
406 * @param name The new name.
407 * @return A reference to this stat.
408 */
409 Parent &name(const std::string &_name)

--- 2481 unchanged lines hidden ---