init
This commit is contained in:
30
include/amscppnarray/amscppnarray.hpp
Normal file
30
include/amscppnarray/amscppnarray.hpp
Normal 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
|
15
include/amscppnarray/amscppnarray_impl.hpp
Normal file
15
include/amscppnarray/amscppnarray_impl.hpp
Normal file
@ -0,0 +1,15 @@
|
||||
#ifndef __AMSCPPNARRAY_IMPL_HPP__
|
||||
#define __AMSCPPNARRAY_IMPL_HPP__
|
||||
|
||||
namespace ams
|
||||
{
|
||||
namespace narray
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
}; //end namespace narray
|
||||
}; //end namespace ams
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user