From 8898ad9b25fca6afe2374d293a981db02a83d7e9 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 31 May 2012 14:46:27 +0000 Subject: Committing the documentation to svn to have it accessible online --- Doc/doxygen/html/_campaign_plan_8h_source.html | 175 +++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 Doc/doxygen/html/_campaign_plan_8h_source.html (limited to 'Doc/doxygen/html/_campaign_plan_8h_source.html') diff --git a/Doc/doxygen/html/_campaign_plan_8h_source.html b/Doc/doxygen/html/_campaign_plan_8h_source.html new file mode 100644 index 0000000..15cd2ea --- /dev/null +++ b/Doc/doxygen/html/_campaign_plan_8h_source.html @@ -0,0 +1,175 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/CampaignPlan.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
CampaignPlan.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: CampaignPlan.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  CampaignPlan defines the interface for all campaign
+
13  planning algorithms. Known subclasses:
+
14  CampaignPlanStrategic - strategic planning
+
15  CampaignPlanAssignment - logistics planning
+
16  CampaignPlanMission - mission planning
+
17  CampaignPlanMovement - starship movement
+
18  CampaignPlanEvent - scripted events
+
19 */
+
20 
+
21 #ifndef CampaignPlan_h
+
22 #define CampaignPlan_h
+
23 
+
24 #include "Types.h"
+
25 #include "Text.h"
+
26 #include "Term.h"
+
27 #include "List.h"
+
28 
+
29 // +--------------------------------------------------------------------+
+
30 
+
31 class Campaign;
+
32 class Combatant;
+
33 class CombatGroup;
+
34 class CombatUnit;
+
35 
+
36 // +--------------------------------------------------------------------+
+
37 
+ +
39 {
+
40 public:
+
41  static const char* TYPENAME() { return "CampaignPlan"; }
+
42 
+ +
44  virtual ~CampaignPlan() { }
+
45 
+
46  int operator == (const CampaignPlan& p) const { return this == &p; }
+
47 
+
48  // operations:
+
49  virtual void ExecFrame() { }
+
50  virtual void SetLockout(int seconds) { }
+
51 
+
52 protected:
+ +
54  double exec_time;
+
55 };
+
56 
+
57 #endif CampaignPlan_h
+
58 
+
+
+ + + + -- cgit v1.1