mirror of
https://git.rtems.org/rtems-tools/
synced 2025-06-14 13:06:23 +08:00
ReportsText.h: Fix formatting
This commit is contained in:
parent
917d859acc
commit
74bb938938
@ -30,9 +30,7 @@ class ReportsText: public ReportsBase {
|
|||||||
*
|
*
|
||||||
* @param[in] fileName identifies the branch report file name
|
* @param[in] fileName identifies the branch report file name
|
||||||
*/
|
*/
|
||||||
void WriteBranchReport(
|
void WriteBranchReport( const std::string& fileName );
|
||||||
const std::string& fileName
|
|
||||||
);
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* This method produces a report that contains information about each
|
* This method produces a report that contains information about each
|
||||||
@ -40,9 +38,7 @@ class ReportsText: public ReportsBase {
|
|||||||
*
|
*
|
||||||
* @param[in] fileName identifies the coverage report file name
|
* @param[in] fileName identifies the coverage report file name
|
||||||
*/
|
*/
|
||||||
void WriteCoverageReport(
|
void WriteCoverageReport( const std::string& fileName );
|
||||||
const std::string& fileName
|
|
||||||
);
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* This method produces a summary report that lists each uncovered
|
* This method produces a summary report that lists each uncovered
|
||||||
@ -50,9 +46,7 @@ class ReportsText: public ReportsBase {
|
|||||||
*
|
*
|
||||||
* @param[in] fileName identifies the size report file name
|
* @param[in] fileName identifies the size report file name
|
||||||
*/
|
*/
|
||||||
void WriteSizeReport(
|
void WriteSizeReport( const std::string& fileName );
|
||||||
const std::string& fileName
|
|
||||||
);
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
@ -65,19 +59,13 @@ class ReportsText: public ReportsBase {
|
|||||||
);
|
);
|
||||||
|
|
||||||
/* Inherit documentation from base class. */
|
/* Inherit documentation from base class. */
|
||||||
virtual void AnnotatedStart(
|
virtual void AnnotatedStart( std::ofstream& aFile );
|
||||||
std::ofstream& aFile
|
|
||||||
);
|
|
||||||
|
|
||||||
/* Inherit documentation from base class. */
|
/* Inherit documentation from base class. */
|
||||||
virtual void AnnotatedEnd(
|
virtual void AnnotatedEnd( std::ofstream& aFile );
|
||||||
std::ofstream& aFile
|
|
||||||
);
|
|
||||||
|
|
||||||
/* Inherit documentation from base class. */
|
/* Inherit documentation from base class. */
|
||||||
virtual bool PutNoBranchInfo(
|
virtual bool PutNoBranchInfo( std::ofstream& report );
|
||||||
std::ofstream& report
|
|
||||||
);
|
|
||||||
|
|
||||||
/* Inherit documentation from base class. */
|
/* Inherit documentation from base class. */
|
||||||
virtual bool PutBranchEntry(
|
virtual bool PutBranchEntry(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user