// // SYMFile Class // #ifndef SYMFILE_H_ #define SYMFILE_H_ #include #include #include "bctypes.h" #include "memstream.h" //------------------------------------------------------------------------------ class SYMFile { public: SYMFile( std::string filepath ); ~SYMFile(); u32 GetAddress(std::string symbolName); bool IsHexAddress(const std::string& address); private: std::string m_filepath; std::vector m_symbols; std::vector m_addresses; }; #endif // SYMFILE_H_