1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-29 21:14:28 +01:00

Use absolute include paths

Fixes #250
This commit is contained in:
Matias Fontanini
2017-09-21 20:48:57 -07:00
parent a7dd867503
commit a6817528bc
220 changed files with 917 additions and 919 deletions

View File

@@ -1,7 +1,7 @@
#ifndef TINS_DOT11_TEST
#define TINS_DOT11_TEST
#include "dot11/dot11_base.h"
#include <tins/dot11/dot11_base.h>
using Tins::Dot11;

View File

@@ -1,8 +1,8 @@
#ifndef TINS_TEST_DOT11_CONTROL_H
#define TINS_TEST_DOT11_CONTROL_H
#include <tins/dot11/dot11_control.h>
#include "tests/dot11.h"
#include "dot11/dot11_control.h"
using Tins::Dot11ControlTA;

View File

@@ -1,8 +1,8 @@
#ifndef TINS_TEST_DOT11_DATA_H
#define TINS_TEST_DOT11_DATA_H
#include <tins/dot11/dot11_data.h>
#include "tests/dot11.h"
#include "dot11/dot11_data.h"
using Tins::Dot11Data;

View File

@@ -1,8 +1,8 @@
#ifndef TINS_DOT11_MGMT_TEST_H
#define TINS_DOT11_MGMT_TEST_H
#include <tins/dot11/dot11_mgmt.h>
#include "tests/dot11.h"
#include "dot11/dot11_mgmt.h"
using Tins::Dot11ManagementFrame;