MAK Data Logger API Documentation for HLA
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
stringTree.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 1992-2010 VT MAK
3 ** All rights reserved.
4 *******************************************************************************/
7 #pragma once
8 
9 
10 
11 #include <lgrOmtReader/omtReader.h>
12 #include <vlutil/vlString.h>
17 {
18 public:
19 
21  DtStringTree();
22 
24  virtual ~DtStringTree();
25 
27  DtStringTree(const DtStringTree& orig);
28 
30  DtStringTree& operator=(const DtStringTree& rhs);
31 
33  virtual void appendToArray(DtStringTree* backTree);
34 
36  virtual const DtStringTree* findKey(const DtString& key) const;
37 
39  inline void setValue(DtString newValue) {myValue = newValue;};
40  inline const DtString& value() const {return myValue;};
41  inline void setKey(DtString newValue) {myKey = newValue;};
42  inline const DtString& key() const {return myKey;};
43  inline void setDatatype(DtString newValue) {myDatatype = newValue;};
44  inline const DtString& datatype() const {return myDatatype;};
45  inline void setOffset(unsigned int newValue) {myOffset = newValue;};
46  inline unsigned int offset() const {return myOffset;} ;
47 
49  DtStringTree* myNext;
52 
53 protected:
54 
58  unsigned int myOffset; //Offset from the start of the byte stream where you may find this value
59 };
60 
61 
62 

Document ID: Generated on Thu Jul 23 15:05:27 EDT 2020 from SVN revision 215371
Copyright © 2020 MAK Technologies. All Rights Reserved (www.mak.com)