Fix missing include guards

This commit is contained in:
Flössie 2019-07-12 08:10:30 +02:00
parent 3b78a5c227
commit 494aa99323
3 changed files with 15 additions and 6 deletions

View File

@ -16,10 +16,14 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>. * along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <string> #pragma once
#include <glibmm/ustring.h>
#include <map>
#include <cmath> #include <cmath>
#include <map>
#include <string>
#include <glibmm/ustring.h>
#include "pixelsmap.h" #include "pixelsmap.h"
#include "rawimage.h" #include "rawimage.h"

View File

@ -16,10 +16,14 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>. * along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <string> #pragma once
#include <glibmm/ustring.h>
#include <map>
#include <cmath> #include <cmath>
#include <map>
#include <string>
#include <glibmm/ustring.h>
#include "rawimage.h" #include "rawimage.h"
namespace rtengine namespace rtengine

View File

@ -15,6 +15,7 @@
* with ICC profiles exceeding 64K bytes in size. See iccprofile.c * with ICC profiles exceeding 64K bytes in size. See iccprofile.c
* for details. * for details.
*/ */
#pragma once
#include <cstdio> /* needed to define "FILE", "NULL" */ #include <cstdio> /* needed to define "FILE", "NULL" */
#include "jpeglib.h" #include "jpeglib.h"