Changeset 70672e3 for src/Helpers


Ignore:
Timestamp:
Dec 22, 2010, 5:20:21 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
cdf2e4
Parents:
9098f9
Message:

Added config.h to all header files.

Location:
src/Helpers
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • src/Helpers/Assert.hpp

    r9098f9 r70672e3  
    88#ifndef ASSERT_HPP_
    99#define ASSERT_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include<sstream>
  • src/Helpers/Info.hpp

    r9098f9 r70672e3  
    99#define INFO_HPP_
    1010
    11 using namespace std;
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1215
    1316/*********************************************** includes ***********************************/
  • src/Helpers/Log.hpp

    r9098f9 r70672e3  
    88#ifndef LOG_HPP_
    99#define LOG_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include "errorlogger.hpp"
  • src/Helpers/MemDebug.hpp

    r9098f9 r70672e3  
    88#ifndef MEMDEBUG_HPP_
    99#define MEMDEBUG_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116/**
  • src/Helpers/Range.hpp

    r9098f9 r70672e3  
    88#ifndef RANGE_HPP_
    99#define RANGE_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
     15
    1016template <class T>
    1117struct range {
  • src/Helpers/Verbose.hpp

    r9098f9 r70672e3  
    99#define VERBOSE_HPP_
    1010
    11 using namespace std;
    12 
    1311/*********************************************** includes ***********************************/
    1412
     
    1917
    2018#include <iosfwd>
     19
     20using namespace std;
    2121
    2222/************************************* Class Verbose & Binary *******************************/
  • src/Helpers/enumeration.hpp

    r9098f9 r70672e3  
    88#ifndef ENUMERATOR_HPP_
    99#define ENUMERATOR_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116/************ struct to contain simple enumerations ***************/
  • src/Helpers/errorlogger.hpp

    r9098f9 r70672e3  
    88#ifndef ERRORLOGGER_HPP_
    99#define ERRORLOGGER_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <iosfwd>
  • src/Helpers/logger.hpp

    r9098f9 r70672e3  
    88#ifndef LOGGER_HPP_
    99#define LOGGER_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <iosfwd>
  • src/Helpers/toString.hpp

    r9098f9 r70672e3  
    99#ifndef TOSTRING_HPP_
    1010#define TOSTRING_HPP_
     11
     12// include config.h
     13#ifdef HAVE_CONFIG_H
     14#include <config.h>
     15#endif
    1116
    1217#include <iostream>
Note: See TracChangeset for help on using the changeset viewer.