Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

54 lines
982 B
C++

/*
PURPOSE:
( TPRO CTE Clock )
PROGRAMMERS:
((Alex Lin) (NASA) (April 2009) (--) (port to c++)))
*/
#ifndef TPROCTECLOCK_HH
#define TPROCTECLOCK_HH
#include <string>
#include "sim_services/Clock/include/Clock.hh"
#ifdef _TPRO_CTE
extern "C" {
#include "tpro.h"
}
#endif
namespace Trick {
class TPROCTEClock : public Clock {
public:
TPROCTEClock() ;
~TPROCTEClock() ;
/** @copybrief Trick::Clock::clock_init() */
virtual int clock_init() ;
/** @copybrief Trick::Clock::wall_clock_time() */
virtual long long wall_clock_time() ;
/** @copybrief Trick::Clock::clock_spin() */
virtual long long clock_spin(long long req_time) ;
/** @copybrief Trick::Clock::clock_stop() */
virtual int clock_stop() ;
std::string dev_name ;
private:
#ifdef _TPRO_CTE
TPRO_BoardObj *pBoard ;
#endif
} ;
}
#endif