12 lines
248 B
C++
12 lines
248 B
C++
|
// ImageMan.h : Include file for standard system include files,
|
|||
|
// or project specific include files.
|
|||
|
|
|||
|
#pragma once
|
|||
|
|
|||
|
#include <iostream>
|
|||
|
#include <fstream>
|
|||
|
|
|||
|
void example_func();
|
|||
|
|
|||
|
// TODO: Reference additional headers your program requires here.
|