diff options
| author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-10-12 14:40:37 -0400 |
|---|---|---|
| committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-10-12 14:40:37 -0400 |
| commit | 8edfcc4b1e36111d400b5f104a04001c66416426 (patch) | |
| tree | 43407055648e05a67aa08a05e9374459ec531bb6 /music/pokeredmusicdisasm/AbstractData.cpp | |
| parent | Merge remote-tracking branch 'kanzure/use-new-preprocessor' (diff) | |
| download | pokeyellow-8edfcc4b1e36111d400b5f104a04001c66416426.tar.gz pokeyellow-8edfcc4b1e36111d400b5f104a04001c66416426.tar.xz pokeyellow-8edfcc4b1e36111d400b5f104a04001c66416426.zip | |
All music and sfx
Diffstat (limited to 'music/pokeredmusicdisasm/AbstractData.cpp')
| -rw-r--r-- | music/pokeredmusicdisasm/AbstractData.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/music/pokeredmusicdisasm/AbstractData.cpp b/music/pokeredmusicdisasm/AbstractData.cpp deleted file mode 100644 index 542922fe..00000000 --- a/music/pokeredmusicdisasm/AbstractData.cpp +++ /dev/null @@ -1,37 +0,0 @@ -#include "AbstractData.h"
-using namespace std;
-
-AbstractData::AbstractData()
-{
- error = false;
-}
-
-// This method must always return "" if true but can return
-// any other value for false
-string AbstractData::GenAsm()
-{
- if(error) return ";#Error";
- else return "";
-}
-
-bool AbstractData::IsValid(unsigned char* byte)
-{
- return true;
-}
-
-bool AbstractData::Parse(unsigned char* byte)
-{
- // If it's not valid, don't even bother parsing
- if(!IsValid(byte)) return false;
- return true;
-}
-
-unsigned int AbstractData::Arguments()
-{
- return 0;
-}
-
-bool AbstractData::GetError()
-{
- return error;
-}
\ No newline at end of file |
