* ./hurricane/doc/hurricane :

- Bug: In the various Property sub-types dox file the Hurricane namespace
        wasn't closed, resulting in the deseapearance of thoses classes in the
        documentation (painful to diagnose).
          Still, the doc for the derived Property mostly remains to be written.
    - Bug: clearing some remnants of a merge conflict in DataBase.dox.
This commit is contained in:
Jean-Paul Chaput 2009-04-03 14:21:04 +00:00
parent 57a0035247
commit f2fa2bf4c1
7 changed files with 18 additions and 41 deletions

View File

@ -57,21 +57,6 @@
* \return the root Library if it exists, else \NULL.
*/
<<<<<<< .mine
/*! \addtogroup Generalities
* \{
*/
/*! \function DataBase* DataBase::getDB ();
* This global generic function returns the current
* DataBase, if it has been created and not destroyed,
* else \NULL.
*/
=======
>>>>>>> .r207
// \}
}

View File

@ -71,15 +71,11 @@
*/
// \{
/*! \function DBo* PrivateProperty::GetOwner() const;
/*! \function DBo* PrivateProperty::getOwner() const;
* \Return the current owner of the property (or NULL if at not been
* assigned yet).
*/
// \}
/*! \name Messages
*/
// \{
} // End of Hurricane namespace.

View File

@ -108,11 +108,11 @@ Properties Occurrence::getProperties() const;
*
* <b>Does the object have properties ?</b>
\code
bool DBo::HasProperty() const;
bool DBo::hasProperty() const;
\endcode
* Return \true if the object owns at least a property, else \false.
\code
bool Occurrence::HasProperty() const;
bool Occurrence::hasProperty() const;
\endcode
* This function searches the quark representing the occurence.
*
@ -123,12 +123,12 @@ bool Occurrence::HasProperty() const;
*
* <b>Adding a property : things becomes a little harder</b>
\code
void DBo::Put(Property* property);
void DBo::put(Property* property);
\endcode
* Adds the property \c \<property\> to the set of properties of
* the object.
\code
void Occurence::Put(Property* property);
void Occurence::put(Property* property);
\endcode
* This function searches the quark representing the occurence.
*
@ -188,11 +188,11 @@ void Occurence::Remove(Property* property);
*
* <b>Clearing all properties</b>
\code
void DBo::ClearProperties();
void DBo::clearProperties();
\endcode
* Removes all properties attached to the object.
\code
void Occurence::ClearProperties();
void Occurence::clearProperties();
\endcode
* First searches for the quark associated to the occurence.
*

View File

@ -81,7 +81,4 @@
// \}
/*! \name Messages
*/
// \{
} // End of Hurricane namespace.

View File

@ -14,8 +14,4 @@
*/
/*! \name Constructors
*/
// \{
} // End of Hurricane namespace.

View File

@ -13,9 +13,7 @@
* relation between a name and a value.
*/
// \}
/*! \name Constructors
*/
// \{
} // End of Hurricane namespace.

View File

@ -572,7 +572,7 @@ WARN_FORMAT = "$file:$line: $text"
# and error messages should be written. If left blank the output is written
# to stderr.
WARN_LOGFILE =
WARN_LOGFILE = doxygen.warn.log
#---------------------------------------------------------------------------
# configuration options related to the input files
@ -603,6 +603,7 @@ INPUT = ../../src/hurricane/hurricane/Commons.h \
Filter.dox \
../../src/hurricane/hurricane/Relation.h \
Relation.dox \
StandardRelation.dox \
../../src/hurricane/hurricane/Tabulation.h \
Tabulation.dox \
../../src/hurricane/hurricane/DbU.h \
@ -685,6 +686,10 @@ INPUT = ../../src/hurricane/hurricane/Commons.h \
../../src/hurricane/hurricane/Properties.h \
../../src/hurricane/hurricane/Property.h \
Property.dox \
PrivateProperty.dox \
SharedProperty.dox \
StandardSharedProperty.dox \
StandardPrivateProperty.dox \
../../src/hurricane/hurricane/Hooks.h \
../../src/hurricane/hurricane/Hook.h \
Hook.dox \