Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

DomainComponent.cpp

Go to the documentation of this file.
00001 /* ****************************************************************** **
00002 **    OpenSees - Open System for Earthquake Engineering Simulation    **
00003 **          Pacific Earthquake Engineering Research Center            **
00004 **                                                                    **
00005 **                                                                    **
00006 ** (C) Copyright 1999, The Regents of the University of California    **
00007 ** All Rights Reserved.                                               **
00008 **                                                                    **
00009 ** Commercial use of this program without express permission of the   **
00010 ** University of California, Berkeley, is strictly prohibited.  See   **
00011 ** file 'COPYRIGHT'  in main directory for information on usage and   **
00012 ** redistribution,  and for a DISCLAIMER OF ALL WARRANTIES.           **
00013 **                                                                    **
00014 ** Developed by:                                                      **
00015 **   Frank McKenna (fmckenna@ce.berkeley.edu)                         **
00016 **   Gregory L. Fenves (fenves@ce.berkeley.edu)                       **
00017 **   Filip C. Filippou (filippou@ce.berkeley.edu)                     **
00018 **                                                                    **
00019 ** ****************************************************************** */
00020                                                                         
00021 // $Revision: 1.1.1.1 $
00022 // $Date: 2000/09/15 08:23:18 $
00023 // $Source: /usr/local/cvs/OpenSees/SRC/domain/component/DomainComponent.cpp,v $
00024                                                                         
00025                                                                         
00026 // File: ~/domain/component//DomainComponent.C
00027 //
00028 // Written: fmk 11/95
00029 // Revised:
00030 //
00031 // Purpose: This file contains the class implementation for DomainComponent
00032 //
00033 // What: "@(#) DomainComponent.h, revA"
00034 
00035 
00036 #include <Domain.h>
00037 #include <DomainComponent.h>
00038 
00039 DomainComponent::DomainComponent(int tag, int clasTag)
00040   :TaggedObject(tag), MovableObject(clasTag), theDomain(0)
00041 {
00042     // does nothing else
00043 }
00044 
00045 
00046 DomainComponent::~DomainComponent()
00047 {
00048     // does nothing
00049 }
00050 
00051 
00052 void
00053 DomainComponent::setDomain(Domain *model)
00054 {
00055     // sets the pointer 
00056     theDomain = model;
00057 }
00058 
00059 
00060 Domain *
00061 DomainComponent::getDomain(void) const
00062 {
00063     // returns the current pointer
00064     return theDomain;
00065 }
00066 
00067 
00068 
00069 int
00070 DomainComponent::displaySelf(Renderer &theViewer, int displayMode, float fact)
00071 {
00072   return 0;
00073 }
00074 
00075 int
00076 DomainComponent::setParameter(char **argv, int argc, Information &eleInformation)
00077 {
00078     return -1;
00079 }
00080     
00081        
00082 
00083 int
00084 DomainComponent::updateParameter(int responseID, Information &eleInformation)
00085 {
00086     return -1;
00087 }
Copyright Contact Us