FEI Package Browser (Single Doxygen Collection) Version of the Day
Loading...
Searching...
No Matches
AccessPattern.hpp
Go to the documentation of this file.
1#ifndef _AccessPattern_h_
2#define _AccessPattern_h_
3
4/*--------------------------------------------------------------------*/
5/* Copyright 2005 Sandia Corporation. */
6/* Under the terms of Contract DE-AC04-94AL85000, there is a */
7/* non-exclusive license for use of this work by or on behalf */
8/* of the U.S. Government. Export of this program may require */
9/* a license from the United States Government. */
10/*--------------------------------------------------------------------*/
11
12#include <cstdlib>
13
15 public:
19
21 {
22 int i;
23 for(i=0; i<numRowIDs_; i++) delete [] rowFieldIDs_[i];
24 for(i=0; i<numColIDsPerRow_; i++) delete [] colFieldIDs_[i];
25
26 delete [] rowFieldIDs_;
27 delete [] colFieldIDs_;
28 delete [] numFieldsPerRow_;
29 delete [] numFieldsPerCol_;
30 numRowIDs_ = 0;
32 }
33
34 int ID_;
42};
43
44#endif // _AccessPattern_h_