summaryrefslogtreecommitdiff
path: root/plugins/adplug/adplug/database.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/adplug/adplug/database.cpp')
-rw-r--r--plugins/adplug/adplug/database.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/plugins/adplug/adplug/database.cpp b/plugins/adplug/adplug/database.cpp
index 0a2abdad..de5cad3c 100644
--- a/plugins/adplug/adplug/database.cpp
+++ b/plugins/adplug/adplug/database.cpp
@@ -286,27 +286,27 @@ void CAdPlugDatabase::CRecord::write(binostream &out)
write_own(out);
}
-bool CAdPlugDatabase::CRecord::user_read(std::istream &in, std::ostream &out)
-{
- return user_read_own(in, out);
-}
-
-bool CAdPlugDatabase::CRecord::user_write(std::ostream &out)
-{
- out << "Record type: ";
- switch(type) {
- case Plain: out << "Plain"; break;
- case SongInfo: out << "SongInfo"; break;
- case ClockSpeed: out << "ClockSpeed"; break;
- default: out << "*** Unknown ***"; break;
- }
- out << std::endl;
- out << "Key: " << std::hex << key.crc16 << ":" << key.crc32 << std::dec << std::endl;
- out << "File type: " << filetype << std::endl;
- out << "Comment: " << comment << std::endl;
-
- return user_write_own(out);
-}
+//bool CAdPlugDatabase::CRecord::user_read(std::istream &in, std::ostream &out)
+//{
+// return user_read_own(in, out);
+//}
+
+//bool CAdPlugDatabase::CRecord::user_write(std::ostream &out)
+//{
+// out << "Record type: ";
+// switch(type) {
+// case Plain: out << "Plain"; break;
+// case SongInfo: out << "SongInfo"; break;
+// case ClockSpeed: out << "ClockSpeed"; break;
+// default: out << "*** Unknown ***"; break;
+// }
+// out << std::endl;
+// out << "Key: " << std::hex << key.crc16 << ":" << key.crc32 << std::dec << std::endl;
+// out << "File type: " << filetype << std::endl;
+// out << "Comment: " << comment << std::endl;
+//
+// return user_write_own(out);
+//}
/***** CAdPlugDatabase::CRecord::CKey *****/