summaryrefslogtreecommitdiff
path: root/src/tool/moneycount
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2012-08-30 16:16:25 -0700
committerBen Longbons <b.r.longbons@gmail.com>2012-08-30 17:03:31 -0700
commit41974ae5265fbc23a06f276f9e008d5dad020e0b (patch)
tree9d595215172e87e2d83b74f7bf3430b3040e780e /src/tool/moneycount
parent21742909143df9159b2401c3e2a39cc0b2bad620 (diff)
downloadtmwa-41974ae5265fbc23a06f276f9e008d5dad020e0b.tar.gz
tmwa-41974ae5265fbc23a06f276f9e008d5dad020e0b.tar.bz2
tmwa-41974ae5265fbc23a06f276f9e008d5dad020e0b.tar.xz
tmwa-41974ae5265fbc23a06f276f9e008d5dad020e0b.zip
Rename files for C++ conversion. Does not compile.
After updating, you can remove these files, as shown in 'git status': Untracked files: (use "git add <file>..." to include in what will be committed) src/map/magic-interpreter-lexer.c src/map/magic-interpreter-parser.c src/map/magic-interpreter-parser.h
Diffstat (limited to 'src/tool/moneycount')
-rw-r--r--src/tool/moneycount/athena_text.cpp4
-rw-r--r--src/tool/moneycount/athena_text.hpp (renamed from src/tool/moneycount/athena_text.h)6
-rw-r--r--src/tool/moneycount/main.cpp4
-rw-r--r--src/tool/moneycount/mmo.hpp (renamed from src/tool/moneycount/mmo.h)6
4 files changed, 10 insertions, 10 deletions
diff --git a/src/tool/moneycount/athena_text.cpp b/src/tool/moneycount/athena_text.cpp
index 59269fa..8cf5457 100644
--- a/src/tool/moneycount/athena_text.cpp
+++ b/src/tool/moneycount/athena_text.cpp
@@ -1,10 +1,10 @@
-#include "athena_text.h"
+#include "athena_text.hpp"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#include "mmo.h"
+#include "mmo.hpp"
//-------------------------------------------------------------------------
// Function to set the character from the line (at read of characters file)
diff --git a/src/tool/moneycount/athena_text.h b/src/tool/moneycount/athena_text.hpp
index 705c979..e4b7025 100644
--- a/src/tool/moneycount/athena_text.h
+++ b/src/tool/moneycount/athena_text.hpp
@@ -1,6 +1,6 @@
-#ifndef ATHENA_TEXT_H
-#define ATHENA_TEXT_H
-#include "mmo.h"
+#ifndef ATHENA_TEXT_HPP
+#define ATHENA_TEXT_HPP
+#include "mmo.hpp"
int mmo_char_fromstr (char *str, struct mmo_charstatus *p);
diff --git a/src/tool/moneycount/main.cpp b/src/tool/moneycount/main.cpp
index d15f223..2c3d56c 100644
--- a/src/tool/moneycount/main.cpp
+++ b/src/tool/moneycount/main.cpp
@@ -7,8 +7,8 @@
#include <algorithm>
#include <cmath>
-#include "mmo.h"
-#include "athena_text.h"
+#include "mmo.hpp"
+#include "athena_text.hpp"
#include "inf.hpp"
#define ATHENA_FILE "save/athena.txt"
diff --git a/src/tool/moneycount/mmo.h b/src/tool/moneycount/mmo.hpp
index bd62b49..beb29c5 100644
--- a/src/tool/moneycount/mmo.h
+++ b/src/tool/moneycount/mmo.hpp
@@ -1,8 +1,8 @@
// $Id: mmo.h,v 1.3 2004/09/25 20:12:25 PoW Exp $
// Original : mmo.h 2003/03/14 12:07:02 Rev.1.7
-#ifndef _MMO_H_
-#define _MMO_H_
+#ifndef MMO_HPP
+#define MMO_HPP
#include <time.h>
@@ -305,5 +305,5 @@ enum
};
-#endif // _MMO_H_
+#endif // MMO_HPP