.h -> .hpp

This commit is contained in:
2015-06-07 01:54:01 -04:00
parent aa5dfe4f69
commit 01d317b007
137 changed files with 707 additions and 714 deletions

View File

@@ -1,12 +1,12 @@
#include <cstdio>
#include "pc.graphics.h"
#include "pc.global.h"
#include "universe.h"
#include "pc.editors.h"
#include "pc.fileio.h"
#include "pc.action.h"
#include "pc.graphics.hpp"
#include "pc.global.hpp"
#include "universe.hpp"
#include "pc.editors.hpp"
#include "pc.fileio.hpp"
#include "pc.action.hpp"
#include "graphtool.hpp"
#include "soundtool.hpp"
#include "mathutil.hpp"

View File

@@ -6,12 +6,12 @@
//
//
#include "universe.h" // Include before Cocoa because the Cocoa header defines things that cause compilation errors in here
#include "universe.hpp" // Include before Cocoa because the Cocoa header defines things that cause compilation errors in here
#include <Cocoa/Cocoa.h>
#include <string>
#include "fileio.hpp"
#include "pc.menus.h"
#include "pc.fileio.h"
#include "pc.menus.hpp"
#include "pc.fileio.hpp"
extern bool verify_restore_quit(std::string dlog);
extern bool All_Done, party_in_scen, scen_items_loaded;

View File

@@ -1,8 +1,8 @@
#include "pc.graphics.h"
#include "pc.global.h"
#include "universe.h"
#include "pc.editors.h"
#include "pc.graphics.hpp"
#include "pc.global.hpp"
#include "universe.hpp"
#include "pc.editors.hpp"
#include "graphtool.hpp"
#include "dialog.hpp"
#include "control.hpp"

View File

@@ -2,13 +2,13 @@
#include <cstring>
#include <cstdio>
#include "pc.global.h"
#include "universe.h"
#include "pc.fileio.h"
#include "pc.graphics.h"
#include "pc.global.hpp"
#include "universe.hpp"
#include "pc.fileio.hpp"
#include "pc.graphics.hpp"
#include "graphtool.hpp"
#include "soundtool.hpp"
#include "pc.editors.h"
#include "pc.editors.hpp"
#include "mathutil.hpp"
#include "dlogutil.hpp"
#include "restypes.hpp"

View File

@@ -1,10 +1,10 @@
#include <iomanip>
#include "pc.global.h"
#include "universe.h"
#include "pc.graphics.h"
#include "pc.editors.h"
#include "pc.action.h"
#include "pc.global.hpp"
#include "universe.hpp"
#include "pc.graphics.hpp"
#include "pc.editors.hpp"
#include "pc.action.hpp"
#include "soundtool.hpp"
#include "graphtool.hpp"
#include "dlogutil.hpp"

View File

@@ -1,18 +1,18 @@
#include <iostream>
#include <cstring>
#include "pc.global.h"
#include "universe.h"
#include "pc.graphics.h"
#include "pc.editors.h"
#include "pc.action.h"
#include "pc.fileio.h"
#include "pc.global.hpp"
#include "universe.hpp"
#include "pc.graphics.hpp"
#include "pc.editors.hpp"
#include "pc.action.hpp"
#include "pc.fileio.hpp"
#include "soundtool.hpp"
#include "graphtool.hpp"
#include "boe.consts.h"
#include "boe.consts.hpp"
#include "dlogutil.hpp"
#include "fileio.hpp"
#include "pc.menus.h"
#include "pc.menus.hpp"
#include "winutil.hpp"
#include "cursors.hpp"

View File

@@ -6,10 +6,10 @@
//
//
#include "pc.menus.h"
#include "universe.h" // Include before Cocoa because the Cocoa header defines things that cause compilation errors in here
#include "pc.menus.hpp"
#include "universe.hpp" // Include before Cocoa because the Cocoa header defines things that cause compilation errors in here
#include <Cocoa/Cocoa.h>
#include "item.h"
#include "item.hpp"
#ifndef __APPLE__
#error pc.menus.mm is Mac-specific code; try compiling pc.menus.win.cpp instead

View File

@@ -1,9 +1,9 @@
#include "pc.menus.h"
#include "pc.menus.hpp"
#include <map>
#include <SFML/Graphics/RenderWindow.hpp>
#include "Resource.h"
#include "universe.h"
#include "universe.hpp"
#include "winutil.hpp"
#include "menu_accel.win.hpp"