blob: 3d259e6b31a841d021e7679125a2c65ca022916c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <Aspect_Pixel.ixx>
#include <Standard_OStream.hxx>
Aspect_Pixel::Aspect_Pixel() {}
Standard_OStream& operator << (Standard_OStream& s, const Aspect_Pixel& aPixel)
{
aPixel.Print( s ) ;
return s ;
}
|