From 9f58c28881ee50433b2e967a07b8aee84003b9db Mon Sep 17 00:00:00 2001
From: Hauke Petersen <hauke.petersen@fu-berlin.de>
Date: Tue, 17 Mar 2015 16:34:01 +0100
Subject: [PATCH] ng_net: introduced ng_netbase.h pseudo header

---
 sys/include/net/ng_netbase.h | 43 ++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 sys/include/net/ng_netbase.h

diff --git a/sys/include/net/ng_netbase.h b/sys/include/net/ng_netbase.h
new file mode 100644
index 0000000000..979e02b6e9
--- /dev/null
+++ b/sys/include/net/ng_netbase.h
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2015 Freie Universität Berlin
+ *
+ * This file is subject to the terms and conditions of the GNU Lesser
+ * General Public License v2.1. See the file LICENSE in the top level
+ * directory for more details.
+ */
+
+/**
+ * @defgroup    net_ng_netbase  Network Stack Pseudo Header
+ * @ingroup     net
+ * @{
+ *
+ * @file
+ * @brief       Pseudo header that includes all network stack base modules
+ *
+ * @author      Hauke Petersen <hauke.petersen@fu-berlin.de>
+ */
+
+#ifndef NG_NETBASE_H_
+#define NG_NETBASE_H_
+
+#include "net/ng_netdev.h"
+#include "net/ng_netapi.h"
+#include "net/ng_netconf.h"
+#include "net/ng_netreg.h"
+#include "net/ng_nettype.h"
+#include "net/ng_netif.h"
+#include "net/ng_pktbuf.h"
+#include "net/ng_pkt.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* this file does not provide anything on it's own */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* NG_NETBASE_H_ */
+/** @} */
-- 
GitLab