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

CommandProperty.cpp

Go to the documentation of this file.
00001 // $Header: /nfs/slac/g/glast/ground/cvs/GaudiKernel/src/Lib/CommandProperty.cpp,v 1.1.1.1 2001/04/18 18:14:18 tlindner Exp $
00002 
00003 #include "GaudiKernel/CommandProperty.h"
00004 
00005 CommandProperty::CommandProperty()
00006 : StringProperty( ) {
00007 }
00008 
00009 CommandProperty::CommandProperty( const std::string& name )
00010 : StringProperty( name ) {
00011 }
00012 
00013 CommandProperty::CommandProperty( const std::string& name,
00014                                   const std::string& value )
00015 : StringProperty( name, value ) {
00016 }
00017 
00018 CommandProperty::~CommandProperty() {
00019 }
00020 
00021 bool CommandProperty::set( const std::string& value )
00022 {
00023   bool result = StringProperty::set( value );
00024   handler( value );
00025   return result;
00026 }

Generated at Wed Nov 21 12:22:03 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000