certi-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[certi-cvs] certi CMakeLists.txt RTIA/DeclarationManagement...


From: certi-cvs
Subject: [certi-cvs] certi CMakeLists.txt RTIA/DeclarationManagement...
Date: Fri, 21 Nov 2008 13:41:53 +0000

CVSROOT:        /sources/certi
Module name:    certi
Changes by:     Christian Stenzel <approx>      08/11/21 13:41:53

Modified files:
        .              : CMakeLists.txt 
        RTIA           : DeclarationManagement.cc 
                         DeclarationManagement.hh ObjectManagement.cc 
                         ObjectManagement.hh 
        RTIG           : Federate.hh 
        libRTI         : RTIambassador.cc 

Log message:
        doxygen comments slightly adapted to Eric's advices

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/certi/CMakeLists.txt?cvsroot=certi&r1=1.61&r2=1.62
http://cvs.savannah.gnu.org/viewcvs/certi/RTIA/DeclarationManagement.cc?cvsroot=certi&r1=3.24&r2=3.25
http://cvs.savannah.gnu.org/viewcvs/certi/RTIA/DeclarationManagement.hh?cvsroot=certi&r1=3.9&r2=3.10
http://cvs.savannah.gnu.org/viewcvs/certi/RTIA/ObjectManagement.cc?cvsroot=certi&r1=3.58&r2=3.59
http://cvs.savannah.gnu.org/viewcvs/certi/RTIA/ObjectManagement.hh?cvsroot=certi&r1=3.29&r2=3.30
http://cvs.savannah.gnu.org/viewcvs/certi/RTIG/Federate.hh?cvsroot=certi&r1=3.13&r2=3.14
http://cvs.savannah.gnu.org/viewcvs/certi/libRTI/RTIambassador.cc?cvsroot=certi&r1=3.99&r2=3.100

Patches:
Index: CMakeLists.txt
===================================================================
RCS file: /sources/certi/certi/CMakeLists.txt,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -b -r1.61 -r1.62
--- CMakeLists.txt      11 Oct 2008 23:03:16 -0000      1.61
+++ CMakeLists.txt      21 Nov 2008 13:41:52 -0000      1.62
@@ -25,7 +25,7 @@
 
 # default behaviour is to build library as shared on all platform
 OPTION(BUILD_SHARED
-             "Build libraries as shared library" ON)
+             "Build libraries as shared library" OFF)
              
 OPTION(USE_FULL_RPATH
              "Use the full RPATH" OFF)
@@ -48,7 +48,7 @@
 ENDIF(USE_FULL_RPATH)
   
 OPTION(BUILD_DOC
-             "Build documentation (using doxygen)" OFF)         
+             "Build documentation (using doxygen)" ON)         
              
 OPTION(FORCE_NO_X11 
               "Force not to use X11 (i.e. no Billard GUI)" OFF)   

Index: RTIA/DeclarationManagement.cc
===================================================================
RCS file: /sources/certi/certi/RTIA/DeclarationManagement.cc,v
retrieving revision 3.24
retrieving revision 3.25
diff -u -b -r3.24 -r3.25
--- RTIA/DeclarationManagement.cc       21 Nov 2008 12:45:24 -0000      3.24
+++ RTIA/DeclarationManagement.cc       21 Nov 2008 13:41:52 -0000      3.25
@@ -18,7 +18,7 @@
 // along with this program ; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// $Id: DeclarationManagement.cc,v 3.24 2008/11/21 12:45:24 approx Exp $
+// $Id: DeclarationManagement.cc,v 3.25 2008/11/21 13:41:52 approx Exp $
 // ----------------------------------------------------------------------------
 
 #include <config.h>
@@ -356,15 +356,6 @@
     e = rep->exception ;
 } /* end of unsubscribeInteractionClass */
 
-/**
- * This methods transmits the Networkmessage 
- * NM_Set_Class_Relevance_Advisory_Switch to RTIG. The transmission sets the
- * ClassRelevanceAdvisory switch at RTIG side to the value of the input 
- * parameter state. The invocation is caused by a successfull transmission of 
- * the message ENABLE_CLASS_RELEVANCE_ADVISORY_SWITCH from the federate to 
RTIA.
- * @param state is a boolean [true, false]
- * @param e is a reference to a possible exception
- */
 void
 DeclarationManagement::
 setClassRelevanceAdvisorySwitch(bool state, TypeException &e) {
@@ -447,16 +438,6 @@
     e = rep.getExceptionType();
 }
 
-/**
- * This methods transmits the Networkmessage 
- * NM_Set_Interaction_Relevance_Advisory_Switch to RTIG. The transmission sets 
the
- * InteractionRelevanceAdvisory switch at RTIG side to the value of the input 
- * parameter state. The invocation is caused by a successfull transmission of 
- * the message ENABLE_INTERACTION_RELEVANCE_ADVISORY_SWITCH from the federate 
to 
- * RTIA.
- * @param state is a boolean [true, false]
- * @param e is a reference to a possible exception
- */
 void
 DeclarationManagement::
 setInteractionRelevanceAdvisorySwitch(bool state, TypeException &e) {
@@ -528,4 +509,4 @@
 
 }} // namespace certi/rtia
 
-// $Id: DeclarationManagement.cc,v 3.24 2008/11/21 12:45:24 approx Exp $
+// $Id: DeclarationManagement.cc,v 3.25 2008/11/21 13:41:52 approx Exp $

Index: RTIA/DeclarationManagement.hh
===================================================================
RCS file: /sources/certi/certi/RTIA/DeclarationManagement.hh,v
retrieving revision 3.9
retrieving revision 3.10
diff -u -b -r3.9 -r3.10
--- RTIA/DeclarationManagement.hh       9 Jul 2008 13:48:28 -0000       3.9
+++ RTIA/DeclarationManagement.hh       21 Nov 2008 13:41:52 -0000      3.10
@@ -18,7 +18,7 @@
 // along with this program ; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// $Id: DeclarationManagement.hh,v 3.9 2008/07/09 13:48:28 erk Exp $
+// $Id: DeclarationManagement.hh,v 3.10 2008/11/21 13:41:52 approx Exp $
 // ----------------------------------------------------------------------------
 
 #ifndef _CERTI_RTIA_DM
@@ -74,6 +74,16 @@
     void unsubscribeInteractionClass(InteractionClassHandle theClassHandle,
                                      TypeException &e);
 
+    /**
+     * Transmits the Networkmessage NM_Set_Class_Relevance_Advisory_Switch to 
+     * RTIG. The transmission sets the ClassRelevanceAdvisory switch at RTIG 
+     * side to the value of the input parameter state. The invocation is caused
+     * by a successfull transmission of the message 
+     * ENABLE_CLASS_RELEVANCE_ADVISORY_SWITCH from the federate to RTIA.
+     * @param[in] state is the new value for the switch, true means enable, 
+     * false means disable
+     * @param[in,out] e is a reference to a possible exception
+     */
     void setClassRelevanceAdvisorySwitch(bool state,
                                          TypeException &e);
 
@@ -85,6 +95,16 @@
     void stopRegistrationForObjectClass(ObjectClassHandle theClass,
                                         TypeException &e);
 
+    /**
+     * Transmits the Networkmessage 
NM_Set_Interaction_Relevance_Advisory_Switch
+     * to RTIG. The transmission sets the InteractionRelevanceAdvisory switch 
at
+     * RTIG side to the value of the input parameter state. The invocation is 
+     * caused by a successfull transmission of the message 
+     * ENABLE_INTERACTION_RELEVANCE_ADVISORY_SWITCH from the federate to RTIA.
+     * @param[in] state is the new value for the switch, true means enable, 
+     * false means disable
+     * @param[in,out] e is a reference to a possible exception
+     */
     void setInteractionRelevanceAdvisorySwitch(bool state,
                                                TypeException &e);
 
@@ -107,4 +127,4 @@
 
 #endif // _CERTI_RTIA_DM
 
-// $Id: DeclarationManagement.hh,v 3.9 2008/07/09 13:48:28 erk Exp $
+// $Id: DeclarationManagement.hh,v 3.10 2008/11/21 13:41:52 approx Exp $

Index: RTIA/ObjectManagement.cc
===================================================================
RCS file: /sources/certi/certi/RTIA/ObjectManagement.cc,v
retrieving revision 3.58
retrieving revision 3.59
diff -u -b -r3.58 -r3.59
--- RTIA/ObjectManagement.cc    21 Nov 2008 12:45:24 -0000      3.58
+++ RTIA/ObjectManagement.cc    21 Nov 2008 13:41:52 -0000      3.59
@@ -897,15 +897,6 @@
     throw InvalidOrderingHandle("");
 }
 
-/**
- * This methods transmits the Networkmessage 
- * NM_Set_Attribute_Scope_Advisory_Switch to RTIG. The transmission sets the
- * AttributeScopeAdvisory switch at RTIG side to the value of the input 
- * parameter state. The invocation is caused by a successfull transmission of 
- * the message ENABLE_ATTRIBUTE_SCOPE_ADVISORY_SWITCH from the federate to 
RTIA.
- * @param state is a boolean [true, false]
- * @param e is a reference to a possible exception
- */
 void
 ObjectManagement::
 setAttributeScopeAdvisorySwitch(bool state, TypeException &e) {
@@ -983,16 +974,6 @@
     G.Out(pdGendoc,"exit  ObjectManagement::attributesOutScope");
 }
 
-/**
- * This methods transmits the Networkmessage 
- * NM_Set_Attribute_Relevance_Advisory_Switch to RTIG. The transmission sets 
the
- * AttributeRelevanceAdvisory switch at RTIG side to the value of the input 
- * parameter state. The invocation is caused by a successfull transmission of 
- * the message ENABLE_ATTRIBUTE_RELEVANCE_ADVISORY_SWITCH from the federate to 
- * RTIA.
- * @param state is a boolean [true, false]
- * @param e is a reference to a possible exception
- */
 void
 ObjectManagement::
 setAttributeRelevanceAdvisorySwitch(bool state, TypeException &e) {

Index: RTIA/ObjectManagement.hh
===================================================================
RCS file: /sources/certi/certi/RTIA/ObjectManagement.hh,v
retrieving revision 3.29
retrieving revision 3.30
diff -u -b -r3.29 -r3.30
--- RTIA/ObjectManagement.hh    1 Nov 2008 19:19:36 -0000       3.29
+++ RTIA/ObjectManagement.hh    21 Nov 2008 13:41:52 -0000      3.30
@@ -18,7 +18,7 @@
 // along with this program ; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// $Id: ObjectManagement.hh,v 3.29 2008/11/01 19:19:36 erk Exp $
+// $Id: ObjectManagement.hh,v 3.30 2008/11/21 13:41:52 approx Exp $
 // ----------------------------------------------------------------------------
 
 #ifndef _CERTI_RTIA_OM
@@ -190,6 +190,16 @@
     void reflectRetraction(EventRetractionHandle theHandle,
                            TypeException &e);
 
+    /**
+     * Transmits the Networkmessage NM_Set_Attribute_Scope_Advisory_Switch to 
+     * RTIG. The transmission sets the AttributeScopeAdvisory switch at RTIG 
+     * side to the value of the input parameter state. The invocation is caused
+     * by a successfull transmission of the message 
+     * ENABLE_ATTRIBUTE_SCOPE_ADVISORY_SWITCH from the federate to RTIA.
+     * @param[in] state is the new value for the switch, true means enable,
+     * false means disable
+     * @param[in,out] e is a reference to a possible exception
+     */
     void setAttributeScopeAdvisorySwitch(bool state,
                                          TypeException &e);
 
@@ -207,6 +217,16 @@
                       const UShort attribArraySize,
                       TypeException &e);
 
+    /**
+     * Transmits the Networkmessage NM_Set_Attribute_Relevance_Advisory_Switch 
+     * to RTIG. The transmission sets the AttributeRelevanceAdvisory switch at 
+     * RTIG side to the value of the input parameter state. The invocation is 
+     * caused by a successfull transmission of the message 
+     * ENABLE_ATTRIBUTE_RELEVANCE_ADVISORY_SWITCH from the federate to RTIA.
+     * @param[in] state is the new value for the switch, true means enable, 
+     * false means disable
+     * @param[in,out] e is a reference to a possible exception
+     */
     void setAttributeRelevanceAdvisorySwitch(bool state,
                                              TypeException &e);
 
@@ -281,4 +301,4 @@
 
 #endif // _CERTI_RTIA_OM
 
-// $Id: ObjectManagement.hh,v 3.29 2008/11/01 19:19:36 erk Exp $
+// $Id: ObjectManagement.hh,v 3.30 2008/11/21 13:41:52 approx Exp $

Index: RTIG/Federate.hh
===================================================================
RCS file: /sources/certi/certi/RTIG/Federate.hh,v
retrieving revision 3.13
retrieving revision 3.14
diff -u -b -r3.13 -r3.14
--- RTIG/Federate.hh    21 Nov 2008 12:45:25 -0000      3.13
+++ RTIG/Federate.hh    21 Nov 2008 13:41:52 -0000      3.14
@@ -16,7 +16,7 @@
 // along with this program ; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// $Id: Federate.hh,v 3.13 2008/11/21 12:45:25 approx Exp $
+// $Id: Federate.hh,v 3.14 2008/11/21 13:41:52 approx Exp $
 // ----------------------------------------------------------------------------
 
 #ifndef CERTI_RTIG_FEDERATE_HH
@@ -47,66 +47,62 @@
     void setRegulator(bool r) { regulator = r ; };
 
     /**
-     * This method sets the ClassRelevanceAdvisorySwitch of the federate
-     * to the value of the input parameter val. The CRA switch is enabled
-     * by default.
-     * @param val is a boolean [true, false]
-     * @return void
+     * Sets the ClassRelevanceAdvisorySwitch of the federate to the value of 
+     * the input parameter val. The CRA switch is enabled by default.
+     * @param[in] val new value for the switch true means enable
+     * false means disable. 
      */
     void setClassRelevanceAdvisorySwitch(bool val) { cras = val ; };
 
     /**
-     * This method sets the InteractionRelevanceAdvisorySwitch of the federate
-     * to the value of the input parameter val. The IRA switch is enabled
-     * by default.
-     * @param val is a boolean [true, false]
-     * @return void
+     * Sets the InteractionRelevanceAdvisorySwitch of the federate to the 
+     * value of the input parameter val. The IRA switch is enabled by default.
+     * @param[in] val new value for the switch true means enable
+     * false means disable. 
      */
     void setInteractionRelevanceAdvisorySwitch(bool val) { iras = val ; };
 
     /**
-     * This method sets the AttributeRelevanceAdvisorySwitch of the federate
-     * to the value of the input parameter val. The ARA switch is disabled
-     * by default.
-     * @param val is a boolean [true, false]
-     * @return void
+     * Sets the AttributeRelevanceAdvisorySwitch of the federate to the value
+     * of the input parameter val. The ARA switch is disabled by default.
+     * @param[in] val new value for the switch true means enable
+     * false means disable. 
      */
     void setAttributeRelevanceAdvisorySwitch(bool val) { aras = val ; };
 
     /**
-     * This method sets the AttributeScopeAdvisorySwitch of the federate
-     * to the value of the input parameter val. The ASA switch is disabled
-     * by default.
-     * @param val is a boolean [true, false]
-     * @return void
+     * Sets the AttributeScopeAdvisorySwitch of the federate to the value of 
+     * the input parameter val. The ASA switch is disabled by default.
+     * @param[in] val new value for the switch true means enable
+     * false means disable. 
      */
     void setAttributeScopeAdvisorySwitch(bool val) { asas = val ; };
 
     /**
-     * This method returns the current state of the 
-     * ClassRelevanceAdvisory switch.
-     * @return a boolean indicating the current state of the switch 
+     * Returns the current state of the ClassRelevanceAdvisory switch.
+     * @return a boolean indicating the current state of the switch,
+     * true means enabled, false means disabled
      */
     bool isClassRelevanceAdvisorySwitch() const { return cras ; };
 
     /**
-     * This method returns the current state of the 
-     * InteractionRelevanceAdvisory switch.
-     * @return a boolean indicating the current state of the switch 
+     * Returns the current state of the InteractionRelevanceAdvisory switch.
+     * @return a boolean indicating the current state of the switch,
+     * true means enabled, false means disabled
      */
     bool isInteractionRelevanceAdvisorySwitch() const { return iras ; };
 
     /**
-     * This method returns the current state of the 
-     * AttributeRelevanceAdvisory switch.
-     * @return a boolean indicating the current state of the switch 
+     * Returns the current state of the AttributeRelevanceAdvisory switch.
+     * @return a boolean indicating the current state of the switch,
+     * true means enabled, false means disabled
      */
     bool isAttributeRelevanceAdvisorySwitch() const { return aras ; };
 
     /**
-     * This method returns the current state of the 
-     * AttributeScopeAdvisory switch.
-     * @return a boolean indicating the current state of the switch 
+     * Returns the current state of the AttributeScopeAdvisory switch.
+     * @return a boolean indicating the current state of the switch,
+     * true means enabled, false means disabled
      */
     bool isAttributeScopeAdvisorySwitch() const { return asas ; };
 
@@ -144,4 +140,4 @@
 
 #endif // CERTI_RTIG_FEDERATE_HH
 
-// $Id: Federate.hh,v 3.13 2008/11/21 12:45:25 approx Exp $
+// $Id: Federate.hh,v 3.14 2008/11/21 13:41:52 approx Exp $

Index: libRTI/RTIambassador.cc
===================================================================
RCS file: /sources/certi/certi/libRTI/RTIambassador.cc,v
retrieving revision 3.99
retrieving revision 3.100
diff -u -b -r3.99 -r3.100
--- libRTI/RTIambassador.cc     21 Nov 2008 12:45:25 -0000      3.99
+++ libRTI/RTIambassador.cc     21 Nov 2008 13:41:52 -0000      3.100
@@ -19,7 +19,7 @@
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 // USA
 //
-// $Id: RTIambassador.cc,v 3.99 2008/11/21 12:45:25 approx Exp $
+// $Id: RTIambassador.cc,v 3.100 2008/11/21 13:41:52 approx Exp $
 // ----------------------------------------------------------------------------
 
 
@@ -2724,8 +2724,8 @@
 }
 
 /**
- * This service sets the ClassRelevanceAdvisory (CRA) Switch to true.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the ClassRelevanceAdvisory (CRA) switch to true. The switch 
+ * state is hold on the RTIG side. That's why the message
  * ENABLE_CLASS_RELEVANCE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2753,8 +2753,8 @@
 }
 
 /**
- * This service sets the ClassRelevanceAdvisory (CRA) Switch to false.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the ClassRelevanceAdvisory (CRA) switch to false. The switch
+ * state is hold on the RTIG side. That's why the message
  * DISABLE_CLASS_RELEVANCE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2782,8 +2782,8 @@
 }
 
 /**
- * This service sets the AttributeRelevanceAdvisory (ARA) Switch to true.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the AttributeRelevanceAdvisory (ARA) switch to true. The switch 
+ * state is hold on the RTIG side. That's why the message
  * ENABLE_ATTRIBUTE_RELEVANCE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2812,8 +2812,8 @@
 }
 
 /**
- * This service sets the AttributeRelevanceAdvisory (ARA) Switch to false.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the AttributeRelevanceAdvisory (ARA) switch to false. The switch 
+ * state is hold on the RTIG side. That's why the message
  * DISABLE_ATTRIBUTE_RELEVANCE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2842,8 +2842,8 @@
 }
 
 /**
- * This service sets the AttributeScopeAdvisory (ASA) Switch to true.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the AttributeScopeAdvisory (ASA) switch to true. The switch state 
+ * is hold on the RTIG side. That's why the message
  * ENABLE_ATTRIBUTE_SCOPE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2870,8 +2870,8 @@
 }
 
 /**
- * This service sets the AttributeScopeAdvisory (ASA) Switch to false.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the AttributeScopeAdvisory (ASA) switch to false. The switch state 
+ * is hold on the RTIG side. That's why the message
  * DISABLE_ATTRIBUTE_SCOPE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2899,8 +2899,8 @@
 }
 
 /**
- * This service sets the InteractionRelevanceAdvisory (IRA) Switch to true.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the InteractionRelevanceAdvisory (IRA) switch to true. The switch 
+ * state is hold on the RTIG side. That's why the message
  * ENABLE_INTERACTION_RELEVANCE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2928,8 +2928,8 @@
 }
 
 /**
- * This service sets the InteractionRelevanceAdvisory (IRA) Switch to false.
- * The switch state is hold on the RTIG side. That's why the message
+ * Sets the InteractionRelevanceAdvisory (IRA) switch to false. The switch 
+ * state is hold on the RTIG side. That's why the message
  * DISABLE_INTERACTION_RELEVANCE_ADVISORY_SWITCH 
  * is transmitted to RTIA. RTIA transmits the message towards RTIG.
  *
@@ -2956,4 +2956,4 @@
     privateRefs->executeService(&req, &rep);
 }
 
-// $Id: RTIambassador.cc,v 3.99 2008/11/21 12:45:25 approx Exp $
+// $Id: RTIambassador.cc,v 3.100 2008/11/21 13:41:52 approx Exp $




reply via email to

[Prev in Thread] Current Thread [Next in Thread]