From b829170121d3657369904ec62d8065606777a9ce Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Oct 2021 18:54:04 +0200 Subject: Removed doxygen generated docs They can be rebuild anytime and are considered a build artifact/binary. --- Doc/doxygen/html/_radio_handler_8h_source.html | 170 ------------------------- 1 file changed, 170 deletions(-) delete mode 100644 Doc/doxygen/html/_radio_handler_8h_source.html (limited to 'Doc/doxygen/html/_radio_handler_8h_source.html') diff --git a/Doc/doxygen/html/_radio_handler_8h_source.html b/Doc/doxygen/html/_radio_handler_8h_source.html deleted file mode 100644 index 2ab4ec2..0000000 --- a/Doc/doxygen/html/_radio_handler_8h_source.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - -Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/RadioHandler.h Source File - - - - - - - - - - - - - -
-
- - - - - - -
-
Starshatter_Open -
-
Open source Starshatter engine
-
-
- - - - - -
-
- -
-
-
- -
- - - - -
- -
- -
-
-
RadioHandler.h
-
-
-Go to the documentation of this file.
1 /* Project Starshatter 4.5
-
2  Destroyer Studios LLC
-
3  Copyright © 1997-2004. All Rights Reserved.
-
4 
-
5  SUBSYSTEM: Stars.exe
-
6  FILE: RadioHandler.h
-
7  AUTHOR: John DiCamillo
-
8 
-
9 
-
10  OVERVIEW
-
11  ========
-
12  RadioHandler (radio comms) class declaration
-
13 */
-
14 
-
15 #ifndef RadioHandler_h
-
16 #define RadioHandler_h
-
17 
-
18 #include "Types.h"
-
19 #include "Geometry.h"
-
20 #include "SimObject.h"
-
21 
-
22 // +--------------------------------------------------------------------+
-
23 
-
24 class RadioMessage;
-
25 class Ship;
-
26 
-
27 // +--------------------------------------------------------------------+
-
28 
- -
30 {
-
31 public:
-
32  RadioHandler();
-
33  virtual ~RadioHandler();
-
34 
-
35  virtual bool ProcessMessage(RadioMessage* msg, Ship* s);
-
36  virtual void AcknowledgeMessage(RadioMessage* msg, Ship* s);
-
37 
-
38 protected:
-
39  virtual bool IsOrder(int action);
-
40  virtual bool ProcessMessageOrders(RadioMessage* msg, Ship* s);
-
41  virtual bool ProcessMessageAction(RadioMessage* msg, Ship* s);
-
42 
-
43  virtual bool Inbound(RadioMessage* msg, Ship* s);
-
44  virtual bool Picture(RadioMessage* msg, Ship* s);
-
45  virtual bool Support(RadioMessage* msg, Ship* s);
-
46  virtual bool SkipNavpoint(RadioMessage* msg, Ship* s);
-
47  virtual bool LaunchProbe(RadioMessage* msg, Ship* s);
-
48 };
-
49 
-
50 // +--------------------------------------------------------------------+
-
51 
-
52 #endif RadioHandler_h
-
53 
-
-
- - - - -- cgit v1.1