Skip to content

Commit

Permalink
Export some more methods
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Oct 29, 2023
1 parent d987acd commit aaeb6c6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/other/manifold/include/manifold/manifold.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ class Manifold {
* Constructors
*/
///@{
Manifold();
~Manifold();
Manifold(const Manifold& other);
Manifold& operator=(const Manifold& other);
Manifold(Manifold&&) noexcept;
Manifold& operator=(Manifold&&) noexcept;
MANIFOLD_EXPORT Manifold();
MANIFOLD_EXPORT ~Manifold();
MANIFOLD_EXPORT Manifold(const Manifold& other);
MANIFOLD_EXPORT Manifold& operator=(const Manifold& other);
MANIFOLD_EXPORT Manifold(Manifold&&) noexcept;
MANIFOLD_EXPORT Manifold& operator=(Manifold&&) noexcept;

Manifold(const MeshGL&, const std::vector<float>& propertyTolerance = {});
MANIFOLD_EXPORT Manifold(const Mesh&);
Expand Down

0 comments on commit aaeb6c6

Please sign in to comment.