diff options
author | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2013-03-07 14:00:52 +0100 |
---|---|---|
committer | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2013-03-07 14:12:27 +0100 |
commit | ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768 (patch) | |
tree | 2267ec17efe5435887cb68169a56418acf7a9f05 /heimdall/source/Interface.h | |
parent | Previous libusbx fix was a red herring of sorts. Inadvertedly it did fix the (diff) | |
download | Heimdall-ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768.tar Heimdall-ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768.tar.gz Heimdall-ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768.tar.bz2 Heimdall-ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768.tar.lz Heimdall-ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768.tar.xz Heimdall-ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768.tar.zst Heimdall-ebbc3e7cd2086a9f62a857dffe9ab0bd1f5da768.zip |
Diffstat (limited to 'heimdall/source/Interface.h')
-rw-r--r-- | heimdall/source/Interface.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/heimdall/source/Interface.h b/heimdall/source/Interface.h index ab4b538..441932a 100644 --- a/heimdall/source/Interface.h +++ b/heimdall/source/Interface.h @@ -31,9 +31,6 @@ // Heimdall #include "Heimdall.h" -using namespace std; -using namespace libpit; - namespace Heimdall { namespace Interface @@ -59,7 +56,7 @@ namespace Heimdall } ActionInfo; - const map<string, ActionInfo>& GetActionMap(void); + const std::map<std::string, ActionInfo>& GetActionMap(void); void Print(const char *format, ...); void PrintWarning(const char *format, ...); @@ -74,7 +71,7 @@ namespace Heimdall void PrintDeviceDetectionFailed(void); - void PrintPit(const PitData *pitData); + void PrintPit(const libpit::PitData *pitData); void SetStdoutErrors(bool enabled); }; |