aboutsummaryrefslogtreecommitdiff
path: root/src/Panda/Template.h
blob: ff9483af43df5814c84d6553e50c6c10de95a836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef template_dot_h
#define template_dot_h

#include<malloc.h>

class Template {
 protected:
  int             rank_;
  int             *size_;

 public:
                  Template();
                  Template(int Rank, int *sizearray);
  virtual        ~Template();
  int             rank();  
  int*            size();
  int             size(int);
  int             total_elements();
};

#endif