Code Cleanup

- Eliminated '#include "x"' by changing all to '#include <x>'.
This commit is contained in:
Paul Beckingham
2011-05-28 00:19:59 -04:00
parent f67706c28e
commit 8fabffe18c
62 changed files with 185 additions and 183 deletions

View File

@@ -1,5 +1,6 @@
cmake_minimum_required (VERSION 2.8)
include_directories (${CMAKE_SOURCE_DIR}/src
include_directories (${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/src
${CMAKE_SOURCE_DIR}/src/commands
${CMAKE_SOURCE_DIR}/src/columns
${CMAKE_SOURCE_DIR}/test

View File

@@ -26,7 +26,7 @@
////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <unistd.h>
#include "../cmake.h"
#include <cmake.h>
#include <main.h>
#include <test.h>

View File

@@ -24,10 +24,10 @@
// USA
//
////////////////////////////////////////////////////////////////////////////////
#include "main.h"
#include "test.h"
#include "Filter.h"
#include "Task.h"
#include <main.h>
#include <test.h>
#include <Filter.h>
#include <Task.h>
Context context;

View File

@@ -25,9 +25,9 @@
//
////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include "Context.h"
#include "main.h"
#include "test.h"
#include <Context.h>
#include <main.h>
#include <test.h>
Context context;

View File

@@ -25,9 +25,9 @@
//
////////////////////////////////////////////////////////////////////////////////
#include <sys/time.h>
#include "Task.h"
#include "main.h"
#include "test.h"
#include <Task.h>
#include <main.h>
#include <test.h>
Context context;

View File

@@ -24,8 +24,8 @@
// USA
//
////////////////////////////////////////////////////////////////////////////////
#include "main.h"
#include "test.h"
#include <main.h>
#include <test.h>
Context context;

View File

@@ -27,8 +27,8 @@
#include <iostream>
#include <unistd.h>
#include "main.h"
#include "test.h"
#include <main.h>
#include <test.h>
Context context;

View File

@@ -31,7 +31,7 @@
#include <main.h>
#include <util.h>
#include <text.h>
#include "test.h"
#include <test.h>
///////////////////////////////////////////////////////////////////////////////
UnitTest::UnitTest ()

View File

@@ -25,10 +25,10 @@
//
////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include "main.h"
#include "text.h"
#include "utf8.h"
#include "test.h"
#include <main.h>
#include <text.h>
#include <utf8.h>
#include <test.h>
Context context;

View File

@@ -25,9 +25,9 @@
//
////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include "main.h"
#include "util.h"
#include "test.h"
#include <main.h>
#include <util.h>
#include <test.h>
Context context;