diff options
author | Brett Weiland <brett_weiland@bpcspace.com> | 2023-01-22 18:35:33 -0600 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcspace.com> | 2023-01-22 18:35:33 -0600 |
commit | 17f12b3d14b7557bc93cd0c9a2273f3aec99712a (patch) | |
tree | beb8d40e2a6de9bdc13a15aecafe40bea802cd60 | |
parent | f556c24a133629a94c795dfdb404a569d6395af1 (diff) |
clarified extraneous files
-rw-r--r-- | test.cpp | 1 | ||||
-rw-r--r-- | test.hpp | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -3,6 +3,7 @@ #include "libpng_wrapper.hpp" using namespace std; +//I was required to write a test function as part of the project; here I test libpng. void test_png() { png test_image("test_png.png", 500, 500); uint32_t w = test_image.width(); @@ -1,6 +1,7 @@ #ifndef TEST_H #define TEST_H +//I was required to write a test function as part of the project; here I test libpng. void test_png(); #endif |