WSF
WsfLinkedProcessor.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2003-2015 The Boeing Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef WSFLINKEDPROCESSOR_HPP
13#define WSFLINKEDPROCESSOR_HPP
14
15#include "wsf_export.h"
16
17#include "WsfExternalLinks.hpp"
18#include "WsfProcessor.hpp"
19
24{
25public:
27 ~WsfLinkedProcessor() override;
28
29 WsfProcessor* Clone() const override;
30
31 bool Initialize(double aSimTime) override;
32
33 bool ProcessInput(UtInput& aInput) override;
34
35 bool ProcessMessage(double aSimTime, const WsfMessage& aMessage) override;
36 void SendMessage(double aSimTime, const WsfMessage& aMessage) override;
37
39
40protected:
43
44 // Allow Derived classes to access the links objects.
46};
47
48#endif
#define WSF_EXPORT
Definition WsfXIO_Export.hpp:35
A linked processor is a processor with both internal links (see WsfInternalLinks) and external links ...
Definition WsfLinkedProcessor.hpp:24
wsf::ExternalLinks mExternalLinks
Definition WsfLinkedProcessor.hpp:45
WsfLinkedProcessor(WsfScenario &aScenario)
Definition WsfLinkedProcessor.cpp:19
wsf::ExternalLinks & GetExternalLinks()
Definition WsfLinkedProcessor.hpp:38
WsfLinkedProcessor & operator=(const WsfLinkedProcessor &aSrc)=delete
A base class for messages sent among simulation communication objects, processors and sensors.
Definition WsfMessage.hpp:33
virtual void SendMessage(double aSimTime, const WsfMessage &aMessage)
Definition WsfPlatformPart.cpp:475
virtual bool ProcessMessage(double aSimTime, const WsfMessage &aMessage)
Definition WsfPlatformPart.cpp:442
WsfProcessor * Clone() const override=0
bool Initialize(double aSimTime) override
Definition WsfProcessor.cpp:86
WsfProcessor(const WsfScenario &aScenario)
Definition WsfProcessor.cpp:25
bool ProcessInput(UtInput &aInput) override
Definition WsfProcessor.cpp:132
Contains the data required to create a simulation, and acts as the entry point for input file process...
Definition WsfScenario.hpp:111
Copyrights Multiple, All Rights Reserved