API Documentation
Constants.h
1 // Constants.h
3 //
5 
6 namespace nkAstraeus::stdWrap
7 {
13  struct Constants
14  {
15  // Namespace
16  inline static const nkMemory::String NAMESPACE ;
17 
18  // UserTypes
19  // Array
20  inline static const nkMemory::String ARRAY_FLOAT_4 ;
21  inline static const nkMemory::String ARRAY_ARRAY_FLOAT_4_4 ;
22  } ;
23 }
nkAstraeus::stdWrap
Encompasses the wrapping of std for scripting.
Definition: ArrayWrapper.h:7
nkAstraeus::stdWrap::Constants
Constants encompassing user type identifiers for the wrapping of available std types.
Definition: Constants.h:14
nkAstraeus::stdWrap::Constants::ARRAY_FLOAT_4
static const nkMemory::String ARRAY_FLOAT_4
Identifies a std::array<float, 4>.
Definition: Constants.h:20
nkAstraeus::stdWrap::Constants::ARRAY_ARRAY_FLOAT_4_4
static const nkMemory::String ARRAY_ARRAY_FLOAT_4_4
Identifies a std::array<std::array<float, 4>, 4>.
Definition: Constants.h:21
nkAstraeus::stdWrap::Constants::NAMESPACE
static const nkMemory::String NAMESPACE
Identifies the namespace.
Definition: Constants.h:16
nkMemory::String
Class holding information about a string, with ownership over the data.
Definition: String.h:22