astyle formatting

This commit is contained in:
Daniel Marjamäki 2009-07-18 09:11:02 +02:00
parent 5dea30519c
commit b4c3ed78b4
1 changed files with 4 additions and 4 deletions

View File

@ -47,24 +47,24 @@ void CheckOther::checkZeroDivision()
* The function Token::Match is often used in the checks. Through it
* you can match tokens against patterns.
*
*
*
* @section checkclass_sec Creating a new check class from scratch
* %Check classes inherit from the Check class. The Check class specifies the interface that you must use.
* To integrate a check class into cppcheck all you need to do is:
* - Add your source file(s) so they are compiled into the executable.
* - Create an instance of the class (the Check::Check() constructor registers the class as an addon that Cppcheck then can use).
*
*
*
* @section embedding_sec Embedding Cppcheck
* Cppcheck is designed to be easily embeddable into other programs.
*
* The "src/main.cpp" and "src/cppcheckexecutor.*" files illustrate how cppcheck
* can be embedded into an application.
*
*
*
* @section detailed_overview_sec Detailed overview
* This happens when you execute cppcheck from the command line:
* -# CppCheckExecutor::check this function executes the Cppcheck
* -# CppCheckExecutor::check this function executes the Cppcheck
* -# CppCheck::parseFromArgs parse command line arguments
* - The Settings class is used to maintain settings
* - Use FileLister and command line arguments to get files to check