[Echempp-devel] Experiment/Experiment Experiment.cpp,NONE,1.1
Status: Beta
Brought to you by:
berndspeiser
|
From: beeblbrox <bee...@us...> - 2007-12-19 14:55:33
|
Update of /cvsroot/echempp/Experiment/Experiment In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv3922 Added Files: Experiment.cpp Log Message: Experiment implementation. --- NEW FILE: Experiment.cpp --- /*! \file Experiment.cpp \brief header file for experiment classes. Experiment.cpp is part of the Experiment package. */ /* Copyright (C) 2007, Dominik Brugger, Bernd Speiser This file is part of EChem++. EChem++ is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. EChem++ is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // $Id: Experiment.cpp,v 1.1 2007/12/19 14:55:21 beeblbrox Exp $ #include "Experiment.hpp" namespace experiment{ const std::string Compound::GUID = "Compound"; const std::string Collection::GUID = "Collection"; const std::string Homogeneous::GUID = "Homogeneous"; const std::string Sequential::GUID = "Sequential"; const std::string Simultaneous::GUID = "Simultaneous"; } /* end namespace experiment */ |