|
SyFi
0.3
|
#include <Polygon.h>
Public Member Functions | |
| ReferenceBox (const std::string &subscript="") | |
| ReferenceBox (const ReferenceBox &box) | |
| virtual | ~ReferenceBox () |
| virtual const std::string | str () const |
| virtual ReferenceBox * | copy () const |
| SyFi::ReferenceBox::ReferenceBox | ( | const std::string & | subscript = "" | ) |
Referenced by copy().
| SyFi::ReferenceBox::ReferenceBox | ( | const ReferenceBox & | box | ) |
Definition at line 1235 of file Polygon.cpp.
:
Box(box)
{
}
| virtual SyFi::ReferenceBox::~ReferenceBox | ( | ) | [inline, virtual] |
| ReferenceBox * SyFi::ReferenceBox::copy | ( | ) | const [virtual] |
Reimplemented from SyFi::Box.
Definition at line 1248 of file Polygon.cpp.
References ReferenceBox().
{
return new ReferenceBox(*this);
}
| const string SyFi::ReferenceBox::str | ( | ) | const [virtual] |
Reimplemented from SyFi::Box.
Definition at line 1240 of file Polygon.cpp.
{
std::ostringstream s;
// s <<"ReferenceBox("<<p[0]<<","<<p[1]<<","<<p[2]<<","<<p[3]<<","<<p[4]<<","<<p[5]<<","<<p[6]<<","<<p[7]<<")";
s <<"ReferenceBox";
return s.str();
}