AGX Dynamics 2.42.1.1
Loading...
Searching...
No Matches
agxData.h
Go to the documentation of this file.
1/*
2Copyright 2007-2025. Algoryx Simulation AB.
3
4All AGX source code, intellectual property, documentation, sample code,
5tutorials, scene files and technical white papers, are copyrighted, proprietary
6and confidential material of Algoryx Simulation AB. You may not download, read,
7store, distribute, publish, copy or otherwise disseminate, use or expose this
8material unless having a written signed agreement with Algoryx Simulation AB, or having been
9advised so by Algoryx Simulation AB for a time limited evaluation, or having purchased a
10valid commercial license from Algoryx Simulation AB.
11
12Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
13from using this software, unless otherwise stated in written agreements with
14Algoryx Simulation AB.
15*/
16
17#ifndef AGXDATA_AGXDATA_H
18#define AGXDATA_AGXDATA_H
19
20#include <agx/String.h>
21#include <agx/Integer.h>
22
27namespace agxData
28{
29 template <typename T>
30 class Array;
31
36 {
37 READ = 0x1,
38 WRITE = 0x2,
40 };
41
44
46 typedef Byte* BytePtr;
47 typedef const Byte* ConstBytePtr;
49
51
52}
53
54
55#endif /* _AGXDATA_AGXDATA_H_ */
#define AGXCORE_EXPORT
Type-specific Array used for fast access into the data held by a Buffer.
Definition: Array.h:107
Vector containing 'raw' data.
Definition: agx/Vector.h:246
Contains classes for low level data storage for AGX.
Definition: Container.h:23
Byte * BytePtr
Definition: agxData.h:46
const Byte * ConstBytePtr
Definition: agxData.h:47
agx::UInt8 Byte
Definition: agxData.h:45
AGXCORE_EXPORT agx::String getAccessModeString(agx::UInt mode)
Array< agx::Index > IndexArray
Definition: agxData.h:50
agx::VectorPOD< Byte > ByteVector
Definition: agxData.h:48
AGXCORE_EXPORT agx::UInt getAccessMode(const agx::String &modeName)
AccessMode
Data access mode.
Definition: agxData.h:36
@ READ_WRITE
Definition: agxData.h:39
@ READ
Definition: agxData.h:37
@ WRITE
Definition: agxData.h:38
uint64_t UInt
Definition: Integer.h:27
uint8_t UInt8
Definition: Integer.h:30