VR-Forces Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
taskEvent.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 2024 MAK Technologies, Inc.
3 ** All rights reserved.
4 *******************************************************************************/
5 #pragma once
6 
9 #include <vrfutil/rwUUID.h>
10 
11 class DtSimTask;
12 
13 namespace makVrfEvents
14 {
16  {
17  public:
18 
20  DtTaskEvent();
21 
22  virtual ~DtTaskEvent() override;
23 
25  DtTaskEvent(const DtSimTask& task, const DtUUID& receiver);
26 
28  DtTaskEvent(const DtTaskEvent&orig);
29 
31  DtTaskEvent& operator=(const DtTaskEvent&);
32 
34  const DtUUID& receiver() const;
35 
37  void setReceiver(const DtUUID&);
38 
40  DtSimTask* task() const;
41 
43  void setTask(const DtSimTask& task);
44 
45  virtual DtEvent* clone() const override { return new DtTaskEvent(*this); };
46 
47  protected:
48  DtUUID myReceiver;
50  };
51 }
UUID is a unique ID wrapper class.
Definition: uuid.h:59
Contains the DtUUID class declaration.
Definition: event.h:13
DtSimTask * myTask
Definition: taskEvent.h:49
DtSimTask is an abstract base class from which real tasks can derive. It manages the read/write capab...
Definition: simTask.h:30
#define DT_DLL_vrfMsgTransport
This file is used to determine how to build Disable inconsistent dll linkage warning Visual Studio 6...
Definition: vrfCommunicationManagerDefines.h:26
Definition: taskEvent.h:15

Document ID: Generated on Thu Oct 23 22:29:17 EDT 2025 from SVN revision 280951
Copyright © 2005-2024 MAK Technologies. All Rights Reserved (www.mak.com)