VR-Forces 5.0.2 Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
transferAcquisitionResponseEvent.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 2020 MAK Technologies, Inc.
3 ** All rights reserved.
4 *******************************************************************************/
5 #pragma once
6 
9 #include <vrfutil/rwUUID.h>
10 #include <set>
11 
13 namespace makVrfEvents
14 {
16  {
17  public:
20 
23 
24  void addLegionGlobalId(unsigned long long);
25  void setLegionGlobalIds(const std::set<unsigned long long>&);
26  const std::set<unsigned long long>& legionGlobalIds() const;
27 
28  void setAccept(bool);
29  bool accept() const;
30 
31  void setTransactionId(unsigned long long);
32  unsigned long long transactionId() const;
33 
34  virtual DtEvent* clone() const { return new DtTransferAcquisitionResponseEvent(*this); };
35  virtual bool isNetworkEvent() const { return false; };
36 
37  protected:
38  unsigned long long myTransactionId;
39  bool myAccept;
40  std::set<unsigned long long> myLegionIdsToAcquire;
41  };
42 }
std::set< unsigned long long > myLegionIdsToAcquire
Definition: transferAcquisitionResponseEvent.h:40
Contains the DtUUID class declaration.
Definition: event.h:13
bool myAccept
Definition: transferAcquisitionResponseEvent.h:39
Definition: transferAcquisitionResponseEvent.h:15
#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
virtual DtEvent * clone() const
Definition: transferAcquisitionResponseEvent.h:34

Document ID: Generated on Sun Dec 4 20:22:03 EST 2022 from SVN revision 249613
Copyright © 2005-2021 MAK Technologies. All Rights Reserved (www.mak.com)