Changeset 161 for soft/giet_vm/mover/include
- Timestamp:
- Jun 20, 2012, 9:50:34 AM (13 years ago)
- Location:
- soft/giet_vm/mover/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/mover/include/mover.h
r160 r161 66 66 mutable std::map<std::string, elfpp::object*> m_loaders; 67 67 PSegHandler m_psegh; 68 PathHandler m_path h;68 PathHandler m_pathHandler; 69 69 70 70 bool m_ginit; … … 73 73 void* load_bin(std::string name); 74 74 elfpp::section* get_sect_by_addr(elfpp::object *loader, unsigned int addr); 75 elfpp::section* get_sect_by_name(elfpp::object *loader, std::string name); 75 76 76 77 public: -
soft/giet_vm/mover/include/path_handler.h
r160 r161 23 23 std::vector<std::string> split(const std::string &s, char delim); 24 24 25 //extract the path without the filename 25 26 std::string getFilePath(const std::string& filepath); 26 27 … … 30 31 PathHandler(const std::string& filepath); 31 32 32 std::string getFullName(const std::string& filepath) const; 33 //return the fullPath relative to where execution is done. 34 std::string getFullPath(const std::string& filepath) const; 33 35 34 36 std::string getFileName(const std::string& filepath);
Note: See TracChangeset
for help on using the changeset viewer.