ddt  0.1
initCpl.hpp
Go to the documentation of this file.
1 // @copyright
2 // (c) Copyright ESO 2020
3 // All Rights Reserved
4 // ESO (eso.org) is an Intergovernmental Organization, and therefore special
5 // legal conditions apply.
6 //
7 // @file initCpl.hpp
8 // @brief Image IO function declaration.
9 //
10 // This file is part of the DDT Image Handling Library and
11 // provides initialization functions for the CPL library.
12 //
13 // @author Christoph Bortlisz, CGI
14 // @since 2020/07/29
15 //
16 
17 #ifndef INITCPL_HPP_
18 #define INITCPL_HPP_
19 
20 #include <sys/stat.h>
21 
22 #include <algorithm>
23 #include <cctype>
24 
25 #include "cpl.h"
26 
27 // namespace ddt {
28 
37 void InitCpl();
38 
42 void EndCpl();
43 
48 const char* GetCplVersion();
49 
50 //} // namespace ddt
51 
52 #endif /* INITCPL_HPP_ */
InitCpl
void InitCpl()
Definition: initCpl.cpp:29
GetCplVersion
const char * GetCplVersion()
Definition: initCpl.cpp:40
EndCpl
void EndCpl()
Definition: initCpl.cpp:34