Skip to content

Commit

Permalink
[docs] Fix some Doxygen references
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl authored and speth committed Jul 28, 2023
1 parent 3399a81 commit 565c584
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion include/cantera/kinetics/KineticsFactory.h
Expand Up @@ -41,7 +41,7 @@ class KineticsFactory : public Factory<Kinetics>

/**
* Create a new kinetics manager.
* @deprecated To be removed after Cantera 3.0; superseded by newKinetics.
* @deprecated To be removed after %Cantera 3.0; superseded by newKinetics().
*/
Kinetics* newKineticsMgr(const string& model);

Expand Down
2 changes: 1 addition & 1 deletion include/cantera/numerics/Func1.h
Expand Up @@ -181,7 +181,7 @@ class Func1
void setC(doublereal c);

//! accessor function for m_f1
//! @deprecated To be removed after Cantera 3.0; replaced by func1_shared.
//! @deprecated To be removed after %Cantera 3.0; replaced by func1_shared().
Func1& func1() const;

//! Accessor function for m_f1_shared
Expand Down
2 changes: 1 addition & 1 deletion include/cantera/oneD/Boundary1D.h
Expand Up @@ -350,7 +350,7 @@ class ReactingSurf1D : public Boundary1D

virtual void setKinetics(shared_ptr<Kinetics> kin);

//! @deprecated To be removed after Cantera 3.0; replaced by setKinetics
//! @deprecated To be removed after %Cantera 3.0; replaced by setKinetics()
void setKineticsMgr(InterfaceKinetics* kin);

void enableCoverageEquations(bool docov) {
Expand Down
6 changes: 3 additions & 3 deletions include/cantera/oneD/Domain1D.h
Expand Up @@ -340,7 +340,7 @@ class Domain1D
/*!
* @param soln local solution vector for this domain
*
* @deprecated To be removed after Cantera 3.0; superseded by asArray.
* @deprecated To be removed after %Cantera 3.0; superseded by asArray().
*/
AnyMap serialize(const double* soln) const;

Expand Down Expand Up @@ -490,11 +490,11 @@ class Domain1D
}
}

//! @deprecated To be removed after Cantera 3.0; replaced by show
//! @deprecated To be removed after %Cantera 3.0; replaced by show()
virtual void showSolution_s(std::ostream& s, const double* x);

//! Print the solution.
//! @deprecated To be removed after Cantera 3.0; replaced by show
//! @deprecated To be removed after %Cantera 3.0; replaced by show()
virtual void showSolution(const double* x);

//! Print the solution.
Expand Down
4 changes: 2 additions & 2 deletions include/cantera/oneD/Sim1D.h
Expand Up @@ -107,13 +107,13 @@ class Sim1D : public OneDim
/**
* Output information on current solution for all domains to stream.
* @param s Output stream
* @deprecated To be removed after Cantera 3.0; replaced by show
* @deprecated To be removed after %Cantera 3.0; replaced by show()
*/
void showSolution(std::ostream& s);

/**
* Show logging information on current solution for all domains.
* @deprecated To be removed after Cantera 3.0; replaced by show
* @deprecated To be removed after %Cantera 3.0; replaced by show()
*/
void showSolution();

Expand Down
8 changes: 5 additions & 3 deletions include/cantera/oneD/StFlow.h
Expand Up @@ -94,13 +94,15 @@ class StFlow : public Domain1D
virtual void setKinetics(shared_ptr<Kinetics> kin);

//! Set the kinetics manager.
//! @deprecated To be removed after Cantera 3.0; replaced by Domain1D::setKinetics
//! @deprecated To be removed after %Cantera 3.0;
//! replaced by Domain1D::setKinetics()
void setKinetics(Kinetics& kin);

virtual void setTransport(shared_ptr<Transport> trans);

//! Set transport model to existing instance
//! @deprecated To be removed after Cantera 3.0; replaced by Domain1D::setKinetics
//! @deprecated To be removed after %Cantera 3.0;
//! replaced by Domain1D::setKinetics()
void setTransport(Transport& trans);

//! Set the transport model
Expand Down Expand Up @@ -204,7 +206,7 @@ class StFlow : public Domain1D
//! Return the type of flow domain being represented, either "Free Flame" or
//! "Axisymmetric Stagnation".
//! @see setFreeFlow setAxisymmetricFlow
//! @deprecated To be removed after Cantera 3.0; replaced by type.
//! @deprecated To be removed after %Cantera 3.0; replaced by type().
virtual string flowType() const;

void solveEnergyEqn(size_t j=npos);
Expand Down
2 changes: 1 addition & 1 deletion include/cantera/zeroD/flowControllers.h
Expand Up @@ -83,7 +83,7 @@ class PressureController : public FlowDevice
m_primary = primary;
}

//! @deprecated To be removed after Cantera 3.0; replaced by setPrimary.
//! @deprecated To be removed after %Cantera 3.0; replaced by setPrimary().
void setMaster(FlowDevice* master);

virtual void setTimeFunction(Func1* g) {
Expand Down

0 comments on commit 565c584

Please sign in to comment.