Remove 'using namespace std' for all example files

This commit is contained in:
nekiwo
2024-07-30 19:26:11 -05:00
parent 98701c4b3d
commit 803727130b
3 changed files with 44 additions and 47 deletions

View File

@ -88,7 +88,7 @@ int main(int argc, char *argv[])
fn = fn.substr(slashPos + 1, dotPos - slashPos - 1);
}
fn += ".jpg";
picture.open(fn.toCString(), ios_base::out | ios_base::binary);
picture.open(fn.toCString(), std::ios_base::out | std::ios_base::binary);
picture << value.value<TagLib::ByteVector>();
picture.close();
*/