-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKrakenHashgraph.h
More file actions
42 lines (31 loc) · 1.13 KB
/
Copy pathKrakenHashgraph.h
File metadata and controls
42 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/************************************************************/
/* NAME: Multiple Authors */
/* ORGN: MIT, Cambridge MA */
/* FILE: KrakenHashgraph.h */
/* DATE: December 29th, 1963 */
/************************************************************/
#ifndef KrakenHashgraph_HEADER
#define KrakenHashgraph_HEADER
#include "MOOS/libMOOS/Thirdparty/AppCasting/AppCastingMOOSApp.h"
class KrakenHashgraph : public AppCastingMOOSApp
{
public:
KrakenHashgraph();
~KrakenHashgraph();
protected: // Standard MOOSApp functions to overload
bool OnNewMail(MOOSMSG_LIST &NewMail);
bool Iterate();
bool OnConnectToServer();
bool OnStartUp();
protected: // Standard AppCastingMOOSApp function to overload
bool buildReport();
protected:
void registerVariables();
private: // Configuration variables
private: // State variables
double dbtime;
double doa;
double nav_x;
double nav_y;
};
#endif