Fix multiple-including.

This commit is contained in:
Thulinma 2012-07-20 17:46:22 +02:00
parent b9a75a320f
commit 935d5635e5
5 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,4 @@
#pragma once
#include <string>
#include <openssl/rsa.h>
#include <openssl/x509.h>

View file

@ -1,3 +1,4 @@
#pragma once
#include <string>
/// Holds base64 decoding and encoding functions.

View file

@ -1,6 +1,7 @@
/// \file config.h
/// Contains generic function headers for managing configuration.
#pragma once
#include <string>
#define STRINGIFY(x) #x

View file

@ -1,5 +1,6 @@
/// \file json.h Holds all JSON-related headers.
#pragma once
#include <string>
#include <deque>
#include <map>

View file

@ -1,6 +1,7 @@
/// \file procs.h
/// Contains generic function headers for managing processes.
#pragma once
#include <unistd.h>
#include <string>
#include <map>