初始化
This commit is contained in:
11
Z_3/array.h
Normal file
11
Z_3/array.h
Normal file
@@ -0,0 +1,11 @@
|
||||
template <class T>
|
||||
class Array {
|
||||
private:
|
||||
int dimension_count;
|
||||
int * dim_size;
|
||||
|
||||
T * entry_point;
|
||||
|
||||
|
||||
public:
|
||||
};
|
||||
Reference in New Issue
Block a user