--- trunk/OOPSE-4/src/integrators/RotationAlgorithm.hpp 2005/04/15 22:03:16 2203 +++ trunk/OOPSE-4/src/integrators/RotationAlgorithm.hpp 2005/04/15 22:04:00 2204 @@ -1,4 +1,4 @@ - /* +/* * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. * * The University of Notre Dame grants you ("Licensee") a @@ -47,19 +47,19 @@ namespace oopse { namespace oopse { -/** - * @class RotationAlgorithm - * @brief abstract class for rotation - */ -class RotationAlgorithm { - public: - void rotate(StuntDouble* sd, Vector3d& ji, double dt) { - doRotate(sd, ji, dt); - } - private: - virtual void doRotate(StuntDouble* sd, Vector3d& ji, double dt) = 0; + /** + * @class RotationAlgorithm + * @brief abstract class for rotation + */ + class RotationAlgorithm { + public: + void rotate(StuntDouble* sd, Vector3d& ji, double dt) { + doRotate(sd, ji, dt); + } + private: + virtual void doRotate(StuntDouble* sd, Vector3d& ji, double dt) = 0; -}; + }; } #endif