This commit is contained in:
madrocketsci
2025-05-08 11:24:03 -04:00
parent a4f510abbd
commit eddc6dc919
29 changed files with 1310 additions and 0 deletions

View File

@ -0,0 +1,30 @@
#ifndef __AMSCPPNARRAY_HPP__
#define __AMSCPPNARRAY_HPP__
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <new>
#include <initializer_list>
namespace ams
{
namespace narray
{
template<typename T> class narray
{
public:
};
void test_narray1();
}; //end namespace narray
}; //end namespace ams
#include <amscppnarray/amscppnarray_impl.hpp>
#endif

View File

@ -0,0 +1,15 @@
#ifndef __AMSCPPNARRAY_IMPL_HPP__
#define __AMSCPPNARRAY_IMPL_HPP__
namespace ams
{
namespace narray
{
}; //end namespace narray
}; //end namespace ams
#endif