Ignore:
Timestamp:
Apr 2, 2011, 12:11:44 AM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
8e24ef
Parents:
6b898c
git-author:
Frederik Heber <heber@…> (03/14/11 17:54:03)
git-committer:
Frederik Heber <heber@…> (04/02/11 00:11:44)
Message:

Added static and private object counter Info::NumberInfos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Helpers/Info.hpp

    r6b898c r93abe8  
    1414#endif
    1515
     16#include <string>
     17
     18class ChronosTest;
     19
    1620/*********************************************** includes ***********************************/
    1721
     
    2125
    2226class Info {
     27  //!> unit tests needs access to some internals
     28  friend class ChronosTest;
    2329public :
    2430  static int verbosity;
    25   const char *FunctionName;
     31  const std::string FunctionName;
    2632
    2733  Info(const char *msg);
     
    2935  static void setVerbosity(int verbosityLevel);
    3036
     37private:
     38  static class Chronos * timekeeper;
     39  static bool ChronosBlocker;
     40  static size_t NumberInfos;
    3141};
    3242
Note: See TracChangeset for help on using the changeset viewer.