Files
OrcaSlicer-bambulab/xs/src/SurfaceCollection.hpp
T

20 lines
256 B
C++
Raw Normal View History

2013-07-14 14:56:43 +02:00
#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