diff options
author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-10-31 14:35:51 -0400 |
---|---|---|
committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-10-31 14:35:51 -0400 |
commit | 1a34c1a43f03fa7408b9853537cdda7615b8b577 (patch) | |
tree | 69b90bc5d7ec0b0214bb4d1fbd709e5f3e608184 /music/pokeredmusicdisasm/File.h | |
parent | e73d3d24aa7519b384c2ea0dcaf5d0ce034705ec (diff) | |
parent | 7ecf8b1714264ff7891480a1da9beb978356b666 (diff) |
Merge branch 'master' of https://github.com/iimarckus/pokered
Conflicts:
main.asm
Diffstat (limited to 'music/pokeredmusicdisasm/File.h')
-rw-r--r-- | music/pokeredmusicdisasm/File.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/music/pokeredmusicdisasm/File.h b/music/pokeredmusicdisasm/File.h deleted file mode 100644 index de1e6998..00000000 --- a/music/pokeredmusicdisasm/File.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef FILE_H
-#define FILE_H
-
-#include <string>
-#include <vector>
-#include <fstream>
-
-class File
-{
-public:
- File();
- File(std::string filename, unsigned int offset = 0, unsigned int length = 0);
-
- string GetFileName();
- void SetFilename(string value);
-
-private:
- std::string filename;
- std::vector<unsigned char> fileBuffer;
- std::fstream fileHandle;
-
- std::vector<unsigned char>::iterator start;
- std::vector<unsigned char>::iterator cur;
-};
-
-#endif
\ No newline at end of file |