* ./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:
parent
57a0035247
commit
f2fa2bf4c1
|
@ -57,21 +57,6 @@
|
||||||
* \return the root Library if it exists, else \NULL.
|
* \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
|
|
||||||
// \}
|
// \}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
* \Return the current owner of the property (or NULL if at not been
|
||||||
* assigned yet).
|
* assigned yet).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// \}
|
// \}
|
||||||
|
|
||||||
|
} // End of Hurricane namespace.
|
||||||
/*! \name Messages
|
|
||||||
*/
|
|
||||||
// \{
|
|
||||||
|
|
||||||
|
|
|
@ -108,11 +108,11 @@ Properties Occurrence::getProperties() const;
|
||||||
*
|
*
|
||||||
* <b>Does the object have properties ?</b>
|
* <b>Does the object have properties ?</b>
|
||||||
\code
|
\code
|
||||||
bool DBo::HasProperty() const;
|
bool DBo::hasProperty() const;
|
||||||
\endcode
|
\endcode
|
||||||
* Return \true if the object owns at least a property, else \false.
|
* Return \true if the object owns at least a property, else \false.
|
||||||
\code
|
\code
|
||||||
bool Occurrence::HasProperty() const;
|
bool Occurrence::hasProperty() const;
|
||||||
\endcode
|
\endcode
|
||||||
* This function searches the quark representing the occurence.
|
* 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>
|
* <b>Adding a property : things becomes a little harder</b>
|
||||||
\code
|
\code
|
||||||
void DBo::Put(Property* property);
|
void DBo::put(Property* property);
|
||||||
\endcode
|
\endcode
|
||||||
* Adds the property \c \<property\> to the set of properties of
|
* Adds the property \c \<property\> to the set of properties of
|
||||||
* the object.
|
* the object.
|
||||||
\code
|
\code
|
||||||
void Occurence::Put(Property* property);
|
void Occurence::put(Property* property);
|
||||||
\endcode
|
\endcode
|
||||||
* This function searches the quark representing the occurence.
|
* This function searches the quark representing the occurence.
|
||||||
*
|
*
|
||||||
|
@ -188,11 +188,11 @@ void Occurence::Remove(Property* property);
|
||||||
*
|
*
|
||||||
* <b>Clearing all properties</b>
|
* <b>Clearing all properties</b>
|
||||||
\code
|
\code
|
||||||
void DBo::ClearProperties();
|
void DBo::clearProperties();
|
||||||
\endcode
|
\endcode
|
||||||
* Removes all properties attached to the object.
|
* Removes all properties attached to the object.
|
||||||
\code
|
\code
|
||||||
void Occurence::ClearProperties();
|
void Occurence::clearProperties();
|
||||||
\endcode
|
\endcode
|
||||||
* First searches for the quark associated to the occurence.
|
* First searches for the quark associated to the occurence.
|
||||||
*
|
*
|
||||||
|
|
|
@ -81,7 +81,4 @@
|
||||||
// \}
|
// \}
|
||||||
|
|
||||||
|
|
||||||
/*! \name Messages
|
} // End of Hurricane namespace.
|
||||||
*/
|
|
||||||
// \{
|
|
||||||
|
|
||||||
|
|
|
@ -14,8 +14,4 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
} // End of Hurricane namespace.
|
||||||
/*! \name Constructors
|
|
||||||
*/
|
|
||||||
// \{
|
|
||||||
|
|
||||||
|
|
|
@ -13,9 +13,7 @@
|
||||||
* relation between a name and a value.
|
* relation between a name and a value.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// \}
|
||||||
|
|
||||||
|
|
||||||
/*! \name Constructors
|
} // End of Hurricane namespace.
|
||||||
*/
|
|
||||||
// \{
|
|
||||||
|
|
||||||
|
|
|
@ -572,7 +572,7 @@ WARN_FORMAT = "$file:$line: $text"
|
||||||
# and error messages should be written. If left blank the output is written
|
# and error messages should be written. If left blank the output is written
|
||||||
# to stderr.
|
# to stderr.
|
||||||
|
|
||||||
WARN_LOGFILE =
|
WARN_LOGFILE = doxygen.warn.log
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# configuration options related to the input files
|
# configuration options related to the input files
|
||||||
|
@ -603,6 +603,7 @@ INPUT = ../../src/hurricane/hurricane/Commons.h \
|
||||||
Filter.dox \
|
Filter.dox \
|
||||||
../../src/hurricane/hurricane/Relation.h \
|
../../src/hurricane/hurricane/Relation.h \
|
||||||
Relation.dox \
|
Relation.dox \
|
||||||
|
StandardRelation.dox \
|
||||||
../../src/hurricane/hurricane/Tabulation.h \
|
../../src/hurricane/hurricane/Tabulation.h \
|
||||||
Tabulation.dox \
|
Tabulation.dox \
|
||||||
../../src/hurricane/hurricane/DbU.h \
|
../../src/hurricane/hurricane/DbU.h \
|
||||||
|
@ -685,6 +686,10 @@ INPUT = ../../src/hurricane/hurricane/Commons.h \
|
||||||
../../src/hurricane/hurricane/Properties.h \
|
../../src/hurricane/hurricane/Properties.h \
|
||||||
../../src/hurricane/hurricane/Property.h \
|
../../src/hurricane/hurricane/Property.h \
|
||||||
Property.dox \
|
Property.dox \
|
||||||
|
PrivateProperty.dox \
|
||||||
|
SharedProperty.dox \
|
||||||
|
StandardSharedProperty.dox \
|
||||||
|
StandardPrivateProperty.dox \
|
||||||
../../src/hurricane/hurricane/Hooks.h \
|
../../src/hurricane/hurricane/Hooks.h \
|
||||||
../../src/hurricane/hurricane/Hook.h \
|
../../src/hurricane/hurricane/Hook.h \
|
||||||
Hook.dox \
|
Hook.dox \
|
||||||
|
|
Loading…
Reference in New Issue