diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 14:11:26 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 14:11:26 +0100 |
commit | b5fd4a6ab6ac92af2141233f802e71c861cd89f4 (patch) | |
tree | 1be362d5b0bbe9abe410a8647a5b79050846cbce /src/ModPlugin.cpp | |
parent | e919a3b2cdfd22ac15b34d2212b46ec8650a5e71 (diff) | |
download | dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.gz dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.bz2 dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.zip |
Remove ModFormat
Diffstat (limited to 'src/ModPlugin.cpp')
-rw-r--r-- | src/ModPlugin.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/ModPlugin.cpp b/src/ModPlugin.cpp index 76e3d78..1f94770 100644 --- a/src/ModPlugin.cpp +++ b/src/ModPlugin.cpp @@ -21,25 +21,3 @@ #include "ModPlugin.h" -ModPlugin::ModPlugin(ModFormat inputFormat, ModFormat outputFormat) : - myInputFormat(inputFormat), - myOutputFormat(outputFormat) -{ -} - - -ModPlugin::~ModPlugin() -{ -} - - -ModFormat ModPlugin::inputFormat() -{ - return myInputFormat; -} - - -ModFormat ModPlugin::outputFormat() -{ - return myOutputFormat; -} |