ResourceFiles.h -> ResourceFork.h

This commit is contained in:
Wolfgang Thaller 2014-10-21 22:37:43 +02:00
parent 4351647dba
commit 2b1817a832
7 changed files with 9 additions and 9 deletions

View File

@ -18,7 +18,7 @@
cmake_minimum_required(VERSION 2.8)
set(CMAKE_CXX_FLAGS "--std=c++0x")
add_library(ResourceFiles ResourceFiles.h ResourceFiles.cc BinaryIO.h BinaryIO.cc ResType.h ResType.cc)
add_library(ResourceFiles ResourceFork.h ResourceFork.cc BinaryIO.h BinaryIO.cc ResType.h ResType.cc)
target_include_directories(ResourceFiles PUBLIC .)
add_executable(MakeAPPL main.cc)
target_link_libraries(MakeAPPL ResourceFiles)

View File

@ -1,4 +1,4 @@
#include "ResourceFiles.h"
#include "ResourceFork.h"
#include "BinaryIO.h"
#include <iostream>

View File

@ -1,5 +1,5 @@
#ifndef RESOURCEFILES_H
#define RESOURCEFILES_H
#ifndef RESOURCEFORK_H
#define RESOURCEFORK_H
#include <string>
#include <map>
@ -41,4 +41,4 @@ public:
void addResources(const Resources& res);
};
#endif // RESOURCEFILES_H
#endif // RESOURCEFORK_H

View File

@ -31,7 +31,7 @@
#ifdef __APPLE__
#include <sys/xattr.h>
#endif
#include "ResourceFiles.h"
#include "ResourceFork.h"
#include "BinaryIO.h"
std::string commandPath;

View File

@ -7,7 +7,7 @@
#include "RezLexer.h"
#include "RezWorld.h"
#include "ResourceFiles.h"
#include "ResourceFork.h"
#include "BinaryIO.h"
namespace po = boost::program_options;

View File

@ -1,6 +1,6 @@
#include "RezWorld.h"
#include "ResourceCompiler.h"
#include "ResourceFiles.h"
#include "ResourceFork.h"
#include <iostream>

View File

@ -6,7 +6,7 @@
#include <string>
#include "ResourceDefinitions.h"
#include "Expression.h"
#include "ResourceFiles.h"
#include "ResourceFork.h"
#include "ResSpec.h"
class RezWorld