VR-Forces Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
setVerticesRequest.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 2017 MaK Technologies, Inc.
3 ** All rights reserved.
4 *******************************************************************************/
5 
6 #pragma once
7 
10 #include "vrfutil/rwVectorList.h"
11 
12 #include <vector>
13 
17 
19 {
20 
21 public:
22 
25 
28  DtSetVerticesRequest(const DtString & writeName,
29  DtReaderWriterRegistry * parentRegistry = 0);
30 
32  DtSetVerticesRequest(const DtString & writeName, const DtSetVerticesRequest &
33  orig, DtReaderWriterRegistry * parentRegistry = 0);
34 
37 
38  virtual ~DtSetVerticesRequest();
39 
41  virtual const DtSetMessageType& type() const;
42 
44  virtual DtSetDataRequest * clone(const DtString & name,
45  DtReaderWriterRegistry * parentRegistry = 0) const;
46 
48  virtual DtString stringRep() const;
49 
51  virtual const DtRwVectorList& vertices() const;
52  virtual std::vector<DtVector> verticesAsVector() const;
53 
54  virtual void setVertices(const DtRwVectorList&);
55  virtual void setVertices(const std::vector<DtVector>&);
56 
59  virtual int netRepSize() const;
60 
62  virtual bool setFromNet(const char* contentBuffer,
63  unsigned contentSize);
64 
67  virtual bool setToNet();
68 
69  static DtSetDataRequest * creator();
70 
71 protected:
73 };
virtual bool setToNet()
Sets netRep buffer to the contents of this set request. Base class does nothing and returns true...
DtSetVerticesRequest will, for those objects that can support it, set the vertices for that object...
Definition: setVerticesRequest.h:18
Definition: readerWriterRegistry.h:39
DtRwVectorList myVertices
Definition: setVerticesRequest.h:72
virtual int netRepSize() const
DtSetDataRequest is an abstract base class from which real setDataRequests can derive. It manages the read/write capability; derived classes need only use and register read/writatble data types for derived information.
Definition: setDataRequest.h:41
virtual const DtSetMessageType & type() const =0
What kind of setDataRequest am I? (from radioMsgTypes.h). Returns a string representing the kind of d...
virtual DtSetDataRequest * clone(const DtString &name, DtReaderWriterRegistry *parentRegistry=0) const =0
Make a copy of this request. Returns a pointer to a newly created copy of this data request...
const DtSetDataRequest & operator=(const DtSetDataRequest &orig)
assignment operator; same as copy costructor.
virtual bool setFromNet(const char *contentBuffer, unsigned contentSize)
Sets the contents of this set request based on the network buffer. Base class does nothing and return...
#define DT_DLL_vrftasks
This file is used to determine how to build.
Definition: vrftasksDefines.h:26
virtual DtString stringRep() const =0
Get a readable string representation of this setDataRequest. Returns a human readable string represen...
class DtRwVectorList:
Definition: rwVectorList.h:22

Document ID: Generated on Tue Sep 24 19:28:17 EDT 2024 from SVN revision 269799
Copyright © 2005-2024 MAK Technologies. All Rights Reserved (www.mak.com)