/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2010 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /* * ActionTraits.cpp * * Created on: Oct 26, 2010 * Author: heber */ #include "Actions/ActionTraits.hpp" #include /** Constructor for base class ActionTraits. * */ ActionTraits::ActionTraits() {} /** Constructor for base class ActionTraits. * */ ActionTraits::~ActionTraits() {} /** Returns Current Value for this ActionTrait. * \return current value as std::string */ const std::string ActionTraits::getCurrentValue() { return CurrentValue; } /** Returns Description for this ActionTrait. * \return current value as std::string */ const std::string ActionTraits::getDescription() { return Description; } /** Returns ShortForm for this ActionTrait. * \return current value as std::string */ const std::string ActionTraits::getShortForm() { return ShortForm; } /** Returns Type for this ActionTrait. * \return current value as std::type_info reference */ const std::type_info * ActionTraits::getType() { return InternalType; }