CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
jsoncollector::IntJ Class Reference

#include <JsonMonitorable.h>

Inheritance diagram for jsoncollector::IntJ:
jsoncollector::JsonMonitorable

Public Member Functions

void add (long sth)
 
 IntJ ()
 
 IntJ (long val)
 
void operator= (long sth)
 
virtual void resetValue ()
 
virtual std::string toString () const
 
void update (long sth)
 
long & value ()
 
virtual ~IntJ ()
 
- Public Member Functions inherited from jsoncollector::JsonMonitorable
virtual std::string & getName ()
 
bool getNotSame ()
 
unsigned int getUpdates ()
 
 JsonMonitorable ()
 
virtual void setName (std::string name)
 
virtual ~JsonMonitorable ()
 

Private Attributes

long theVar_
 

Additional Inherited Members

- Protected Attributes inherited from jsoncollector::JsonMonitorable
std::string name_
 
bool notSame_
 
unsigned int updates_
 

Detailed Description

Definition at line 73 of file JsonMonitorable.h.

Constructor & Destructor Documentation

jsoncollector::IntJ::IntJ ( )
inline
jsoncollector::IntJ::IntJ ( long  val)
inline

Definition at line 77 of file JsonMonitorable.h.

virtual jsoncollector::IntJ::~IntJ ( )
inlinevirtual

Definition at line 79 of file JsonMonitorable.h.

79 {}

Member Function Documentation

void jsoncollector::IntJ::add ( long  sth)
inline

Definition at line 106 of file JsonMonitorable.h.

References theVar_, and jsoncollector::JsonMonitorable::updates_.

Referenced by counter.Counter::register().

106  {
107  theVar_+=sth;
108  updates_++;
109  }
void jsoncollector::IntJ::operator= ( long  sth)
inline
virtual void jsoncollector::IntJ::resetValue ( )
inlinevirtual
virtual std::string jsoncollector::IntJ::toString ( ) const
inlinevirtual

Implements jsoncollector::JsonMonitorable.

Definition at line 81 of file JsonMonitorable.h.

References contentValuesCheck::ss, and theVar_.

81  {
82  std::stringstream ss;
83  ss << theVar_;
84  return ss.str();
85  }
void jsoncollector::IntJ::update ( long  sth)
inline
long& jsoncollector::IntJ::value ( )
inline

Definition at line 96 of file JsonMonitorable.h.

References theVar_.

Referenced by average.Average::average().

96  {
97  return theVar_;
98  }

Member Data Documentation

long jsoncollector::IntJ::theVar_
private

Definition at line 112 of file JsonMonitorable.h.

Referenced by add(), operator=(), resetValue(), toString(), update(), and value().