RadarFX API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
rfxImageMessage.h
Go to the documentation of this file.
1 // ******************************************************************************
2 // ** Copyright (c) 2024 MAK Technologies, Inc.
3 // ** All rights reserved.
4 // ******************************************************************************
5 
9 
10 #pragma once
11 
12 #include "export.h"
13 #include "rfxMessage.h"
14 
15 #include <matrix/vlVector.h>
16 #include <matrix/vlTaitBryan.h>
17 
18 #include <string>
19 
20 namespace makRadarFx
21 {
26 
28 {
29  DtImageSize() {x = 512; y = 512;}
30  DtImageSize(int imgX, int imgY) { x = imgX; y = imgY;}
31 
32  int x;
33  int y;
34 };
35 
38 {
39  public:
41  DtImageRequest(unsigned int messageType);
42  virtual ~DtImageRequest();
43 };
44 
45 
48 
51 {
52  public:
53 
55  DtImageResponse(unsigned int messageType);
56  virtual ~DtImageResponse();
57 };
58 }
59 


Copyright © 2024 MAK Technologies, Inc. All Rights Reserved (www.mak.com)