Momentum Scripting v1
Loading...
Searching...
No Matches
macros.h
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 without having a written signed agreement with Algoryx Simulation AB.
9
10Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
11from using this software, unless otherwise stated in written agreements with
12Algoryx Simulation AB.
13*/
14
15#ifndef MOMENTUM_MACROS_H
16#define MOMENTUM_MACROS_H
17
18#include <vector>
19#include <agx/macros.h>
20#include <memory>
21
22#define V1_DECLARE_CONTAINER_TYPE(T) \
23\
26 typedef std::vector<std::shared_ptr<T> > T ## Vector;\
27 typedef std::shared_ptr<T> T ## Ptr
28
29#endif