#include <Contour.h>
Public Member Functions | |
| Contour () | |
| ~Contour () | |
| Contour (const Contour &other) | |
| Contour & | operator= (const Contour &other) |
| bool | operator== (const Contour &other) const |
| bool | operator!= (const Contour &other) const |
Write detailed description for Contour here.
Definition at line 25 of file Contour.h.
|
|
Write brief comment for Contour here.
Definition at line 44 of file Contour.h. 00044 {};
|
|
|
Write brief comment for ~Contour here.
Definition at line 60 of file Contour.h. 00060 {};
|
|
|
Write brief comment for Contour here.
Definition at line 23 of file Contour.cpp. 00023 {
00024
00025 }
|
|
|
Write brief comment for operator != here.
Definition at line 109 of file Contour.cpp. 00110 {
00111 if( true ) {
00112 return false;
00113 }
00114 return true;
00115 }
|
|
|
Write brief comment for operator = here.
Definition at line 48 of file Contour.cpp. 00049 {
00050 // if same object
00051 if ( this == &other )
00052 return *this;
00053
00054
00055 return *this;
00056 }
|
|
|
Write brief comment for operator == here.
Definition at line 79 of file Contour.cpp. 00080 {
00081
00082 if( true ) {
00083 return true;
00084 }
00085 return false;
00086 }
|
1.3.9.1