xc
SingleDomParamIter.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/single/SingleDomParamIter.h,v $
24 
25 // Description: This file contains the class definition for SingleDomParamIter.
26 // SingleDomParamIter is an iter for returning the parameters of an object of class
27 // SingleDomain. SingleDomParamIters must be written for each subclass of
28 // SingleDomain, wherin the parameters are stored differently.
29 
30 #ifndef SingleDomParamIter_h
31 #define SingleDomParamIter_h
32 
33 #include "domain/component/ParameterIter.h"
34 #include <domain/domain/single/SingleDomTIter.h>
35 
36 namespace XC {
37 
38 class SingleDomParamIter: public SingleDomTIter<ParameterIter>
39  {
40  public:
41  SingleDomParamIter(TaggedObjectStorage *theStorage);
42 
43  virtual Parameter *operator()(void);
44 
45  };
46 } // end of XC namespace
47 
48 #endif
49 
50 
51 
52 
53 
Definition: SingleDomParamIter.h:38
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
Parameter.
Definition: Parameter.h:68
Definition: SingleDomTIter.h:38