From 328e2464c81b0dfce623d4fbe9617ef79d6ed3c1 Mon Sep 17 00:00:00 2001 From: Dylan Date: Tue, 7 Oct 2025 18:45:28 +1300 Subject: feat: Added cpp namespace All functions and classes are now behind the cpp namespace `TehImage` --- test/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/main.cpp b/test/main.cpp index c020526..d4c2e64 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -21,9 +21,9 @@ int main(int argc, char* argv[]) std::string outfile = argv[2]; - PNGImage png; + TehImage::PNGImage png; png.readFromFile(infile); - BMPImage bmp(png); + TehImage::BMPImage bmp(png); bmp.writeToFile(outfile); } -- cgit v1.2.3