20 lines
256 B
C++
20 lines
256 B
C++
#ifndef slic3r_SurfaceCollection_hpp_
|
|
#define slic3r_SurfaceCollection_hpp_
|
|
|
|
#include "Surface.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
typedef std::vector<Surface> Surfaces;
|
|
|
|
class SurfaceCollection
|
|
{
|
|
public:
|
|
Surfaces surfaces;
|
|
SV* arrayref();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|