Skip to content

Commit

Permalink
Cleanup: Drop unused forward declaration (#113)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll authored Oct 30, 2020
1 parent 06e3421 commit 0d44a6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion graphics/include/ignition/common/Animation.hh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ namespace ignition
class KeyFrame;
class PoseKeyFrame;
class NumericKeyFrame;
class AnimationPrivate;
class TrajectoryInfoPrivate;

/// \class Animation Animation.hh ignition/common/Animation.hh
Expand Down
6 changes: 5 additions & 1 deletion graphics/src/Animation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@ namespace
}

/////////////////////////////////////////////////
class ignition::common::AnimationPrivate
namespace ignition {
namespace common {
class AnimationPrivate
{
/// \brief true if the animation is interpolated in x
public: bool interpolateX = false;
};
} // namespace ignition
} // namespace common

// TODO(luca) Make Animation class follow PIMPL and remove global static map
/////////////////////////////////////////////////
Expand Down

0 comments on commit 0d44a6e

Please sign in to comment.