MAK RTIspy API Documentation for HLA 4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
AuthorizerFactoryFactory.h
Go to the documentation of this file.
1 #pragma once
2 /***********************************************************************
3  The IEEE hereby grants a general, royalty-free license to copy, distribute,
4  display and make derivative works from this material, for all purposes,
5  provided that any use of the material contains the following
6  attribution: "Reprinted with permission from IEEE 1516.1(TM)-2025".
7  Should you require additional information, contact the Manager, Standards
8  Intellectual Property, IEEE Standards Association (stds-ipr@ieee.org).
9 ***********************************************************************/
10 
11 #include <RTI/SpecificConfig.h>
12 #include <memory>
13 #include <string>
14 
15 namespace rti1516_2025
16 {
17  class AuthorizerFactory;
18 
19  // The AuthorizerFactoryFactory implementation resides in a separate
20  // library named libauthorizer. The libauthorizer library may provide custom
21  // authorizers.
23  {
24  public:
25  virtual ~AuthorizerFactoryFactory() = default;
26 
27  // The name is used to choose among several AuthorizerFactories that might
28  // be present in the authorizer library. The name shall come from the RTI
29  // Runtime Initialization Data.
30  // If the supplied implementation name does not match any name
31  // supported by the library, then the call shall be delegated to
32  // HLAauthorizerFactoryFactory::getAuthorizerFactory.
33  static std::unique_ptr<AuthorizerFactory> getAuthorizerFactory(
34  std::wstring const & authorizerName);
35  };
36 }
37 
38 
Definition: AuthorizerFactoryFactory.h:22
#define RTI_EXPORT_AUTHORIZER
Definition: SpecificConfig.h:69
This file contains definitions that are used to isolate platform-specific elements of the API...

Document ID: Generated on Sun Jul 20 16:15:30 EDT 2025 from SVN revision 277985
Copyright © 2005-2025 MAK Technologies Inc. All Rights Reserved (www.mak.com)