1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-27 06:26:32 -05:00

Common: Move header guards over to pragma once

Also replaced C headers with the C++ equivalent ones
This commit is contained in:
Lioncash
2014-08-17 13:45:50 -04:00
parent d1c2b76ad1
commit 90e994471a
33 changed files with 41 additions and 146 deletions

View File

@@ -1,8 +1,7 @@
#ifndef _DEBUGINTERFACE_H
#define _DEBUGINTERFACE_H
#pragma once
#include <cstring>
#include <string>
#include <string.h>
class DebugInterface
{
@@ -35,5 +34,3 @@ public:
virtual int getColor(unsigned int /*address*/){return 0xFFFFFFFF;}
virtual std::string getDescription(unsigned int /*address*/) = 0;
};
#endif