#ifndef RWLIB_FORWARD_HPP #define RWLIB_FORWARD_HPP #include #include // Forward Declarations class Clump; class ModelFrame; struct Geometry; class Atomic; class Clump; // Pointer types using ModelFramePtr = std::shared_ptr; using GeometryPtr = std::shared_ptr; using AtomicPtr = std::shared_ptr; using AtomicList = std::vector; using ClumpPtr = std::shared_ptr; #endif /* FORWARD_HPP */