mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
14a75508a3
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.
17 lines
265 B
Plaintext
17 lines
265 B
Plaintext
|
|
#ifndef BC635CLOCK_SM
|
|
#define BC635CLOCK_SM
|
|
|
|
##include "sim_services/Clock/include/BC635Clock.hh"
|
|
|
|
class BC635SimObject : public Trick::SimObject {
|
|
public:
|
|
Trick::BC635Clock bc635 ;
|
|
BC635SimObject() { }
|
|
}
|
|
|
|
BC635SimObject trick_bc635 ;
|
|
|
|
#endif
|
|
|