This commit is contained in:
FlightControl
2017-06-13 13:29:48 +02:00
parent 5a7551d312
commit dd39ff4e94
41 changed files with 43 additions and 23 deletions

View File

@@ -1,9 +1,11 @@
--- **AI** - The AI_A2A_DISPATCHER creates an automatic A2A defense system based on an EWR network targets and coordinating CAP and GCI.
--
-- ![Banner Image](..\Presentations\AI_A2A_DISPATCHER\Dia1.JPG)
--
-- ====
--
-- ### Authors: **Sven Van de Velde (FlightControl)**
-- **Stonehouse**
-- ### Authors: **Sven Van de Velde (FlightControl)** rework of GCICAP + introduction of new concepts (squadrons).
-- ### Authors: **Stonehouse**, **SNAFU** in terms of the advice, documentation, and the original GCICAP script.
--
-- ### Contributions:
--

View File

@@ -703,7 +703,7 @@ end
--- Set tracing for a class
-- @param #BASE self
-- @param #string Class
function --BASE:TraceClass( Class )
function BASE:TraceClass( Class )
_TraceClass[Class] = true
_TraceClassMethod[Class] = {}
self:E( "Tracing class " .. Class )
@@ -713,7 +713,7 @@ end
-- @param #BASE self
-- @param #string Class
-- @param #string Method
function --BASE:TraceClassMethod( Class, Method )
function BASE:TraceClassMethod( Class, Method )
if not _TraceClassMethod[Class] then
_TraceClassMethod[Class] = {}
_TraceClassMethod[Class].Method = {}