xc
ParameterIter.h
1 /* ****************************************************************** **
2 ** OpenSees - Open System for Earthquake Engineering Simulation **
3 ** Pacific Earthquake Engineering Research Center **
4 ** **
5 ** **
6 ** (C) Copyright 1999, The Regents of the University of California **
7 ** All Rights Reserved. **
8 ** **
9 ** Commercial use of this program without express permission of the **
10 ** University of California, Berkeley, is strictly prohibited. See **
11 ** file 'COPYRIGHT' in main directory for information on usage and **
12 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. **
13 ** **
14 ** Developed by: **
15 ** Frank McKenna (fmckenna@ce.berkeley.edu) **
16 ** Gregory L. Fenves (fenves@ce.berkeley.edu) **
17 ** Filip C. Filippou (filippou@ce.berkeley.edu) **
18 ** **
19 ** ****************************************************************** */
20 
21 // $Revision: 1.1 $
22 // $Date: 2006-12-13 18:17:37 $
23 // $Source: /usr/local/cvs/OpenSees/SRC/domain/domain/ParameterIter.h,v $
24 
25 #ifndef ParameterIter_h
26 #define ParameterIter_h
27 
28 namespace XC {
29 class Parameter;
30 
37  {
38  public:
39  ParameterIter() {};
40  virtual ~ParameterIter() {};
41 
42  virtual Parameter *operator()(void) =0;
43  };
44 } // end of XC namespace
45 
46 #endif
47 
48 
49 
50 
51 
ParameterIter is an abstract base class.
Definition: ParameterIter.h:36
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
Parameter.
Definition: Parameter.h:68