Refactoring: Cleanup headers using checkheaders

This commit is contained in:
Daniel Marjamäki 2010-07-24 22:12:56 +02:00
parent 19e26c3b80
commit 0c65796984
6 changed files with 8 additions and 4 deletions

View File

@ -20,7 +20,7 @@
#ifndef mathlibH
#define mathlibH
#include "token.h"
#include <string>
/// @addtogroup Core
/// @{

View File

@ -22,6 +22,7 @@
#include "token.h"
#include "filelister.h"
#include "path.h"
#include "errorlogger.h"
#include <algorithm>
#include <stdexcept>

View File

@ -25,8 +25,9 @@
#include <istream>
#include <string>
#include <list>
#include "errorlogger.h"
#include "settings.h"
class ErrorLogger;
class Settings;
/// @addtogroup Core
/// @{

View File

@ -29,6 +29,7 @@
#include "settings.h"
#include "errorlogger.h"
#include "check.h"
#include "classinfo.h"
#include <locale>
#include <fstream>

View File

@ -25,8 +25,8 @@
#include <string>
#include <map>
#include <vector>
#include "classinfo.h"
class ClassInfo;
class Token;
class ErrorLogger;
class Settings;

View File

@ -25,6 +25,7 @@
#include "testsuite.h"
#include "tokenize.h"
#include "token.h"
#include "classinfo.h"
extern std::ostringstream errout;
class TestTokenizer : public TestFixture