mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-15 13:42:40 -07:00
27 lines
348 B
C++
27 lines
348 B
C++
#ifndef slic3r_SurfaceCollection_hpp_
|
|
#define slic3r_SurfaceCollection_hpp_
|
|
|
|
extern "C" {
|
|
#include "EXTERN.h"
|
|
#include "perl.h"
|
|
#include "XSUB.h"
|
|
#include "ppport.h"
|
|
}
|
|
|
|
#include "Surface.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
typedef std::vector<Surface> Surfaces;
|
|
|
|
class SurfaceCollection
|
|
{
|
|
public:
|
|
Surfaces surfaces;
|
|
SV* arrayref();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|