CCA
Tick.h
Go to the documentation of this file.
00001 /* ============================================================
00002  *
00003  * This file is a part of CCA project
00004  *
00005  * Copyright (C) 2014 by Arne Nordmann <anordman at cor-lab dot uni-bielefeld dot de>
00006  *
00007  * This file may be licensed under the terms of the
00008  * GNU Lesser General Public License Version 3 (the ``LGPL''),
00009  * or (at your option) any later version.
00010  *
00011  * Software distributed under the License is distributed
00012  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
00013  * express or implied. See the LGPL for the specific language
00014  * governing rights and limitations.
00015  *
00016  * You should have received a copy of the LGPL along with this
00017  * program. If not, go to http://www.gnu.org/licenses/lgpl.html
00018  * or write to the Free Software Foundation, Inc.,
00019  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00020  *
00021  * The development of this software was supported by:
00022  *   CoR-Lab, Research Institute for Cognition and Robotics
00023  *     Bielefeld University
00024  *
00025  * ============================================================ */
00026 
00027 #pragma once
00028 
00029 #include <iostream>
00030 
00031 #include <boost/shared_ptr.hpp>
00032 #include <boost/cstdint.hpp>
00033 
00034 #include "cca/dto/DataTransferObject.h"
00035 
00036 namespace cca {
00037 namespace timing {
00038 
00047 class Tick;
00048 typedef boost::shared_ptr<Tick> TickPtr;
00049 
00050 class Tick: public DataTransferObject {
00051 public:
00057     Tick(boost::uint64_t sequenceNumber);
00058 
00059     virtual ~Tick();
00060 
00061     virtual void setSequenceNumber(boost::uint64_t sequenceNumber);
00062     virtual boost::uint64_t getSequenceNumber();
00063 
00064     virtual void setTimeStamp(boost::uint64_t timestamp);
00065     virtual boost::uint64_t getTimeStamp();
00066 
00067     virtual void setVirtualTimeStamp(boost::uint64_t timestamp);
00068     virtual boost::uint64_t getVirtualTimeStamp();
00069 
00070     virtual void setTimeStep(boost::uint64_t timestep);
00071     virtual boost::uint64_t getTimeStep();
00072 
00073     virtual void setVirtualTimeStep(boost::uint64_t timestep);
00074     virtual boost::uint64_t getVirtualTimeStep();
00075 
00076     virtual void setFactor(double factor);
00077     virtual double getFactor();
00078 
00079     virtual void setStepFactor(double factor);
00080     virtual double getStepFactor();
00081 
00082     virtual std::string print() const;
00083 
00084 protected:
00086     boost::uint64_t sequenceNumber;
00087 
00089     boost::uint64_t timestamp;
00091     boost::uint64_t timestampVirtual;
00092 
00094     boost::uint64_t timestep;
00096     boost::uint64_t timestepVirtual;
00097 
00099     double factor;
00101     double stepFactor;
00102 };
00103 
00104 }
00105 }