diff options
Diffstat (limited to 'TAO/tests/Collocation/Diamond_i.cpp')
-rw-r--r-- | TAO/tests/Collocation/Diamond_i.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/tests/Collocation/Diamond_i.cpp b/TAO/tests/Collocation/Diamond_i.cpp index b28e1d0fe9c..85b39b1ad54 100644 --- a/TAO/tests/Collocation/Diamond_i.cpp +++ b/TAO/tests/Collocation/Diamond_i.cpp @@ -9,7 +9,7 @@ Top_i::~Top_i () } char * -Top_i::shape (void) +Top_i::shape () { return CORBA::string_dup ("a point."); } @@ -23,13 +23,13 @@ Left_i::~Left_i () } char * -Left_i::shape (void) +Left_i::shape () { return CORBA::string_dup ("the left line"); } char * -Left_i::color (void) +Left_i::color () { return CORBA::string_dup ("black"); } @@ -43,20 +43,20 @@ Right_i::~Right_i () } char * -Right_i::shape (void) +Right_i::shape () { return CORBA::string_dup ("the right line"); } char * -Right_i::color (void) +Right_i::color () { return CORBA::string_dup ("red"); // } CORBA::Long -Right_i::width (void) +Right_i::width () { return 0; } @@ -70,25 +70,25 @@ Buttom_i::~Buttom_i () } char * -Buttom_i::shape (void) +Buttom_i::shape () { return CORBA::string_dup ("a diamond"); } char * -Buttom_i::color (void) +Buttom_i::color () { return CORBA::string_dup ("translucent"); } CORBA::Long -Buttom_i::width (void) +Buttom_i::width () { return 100; } char * -Buttom_i::name (void) +Buttom_i::name () { return CORBA::string_dup ("Jubilee"); } |