Change include guards

This commit is contained in:
badaix 2022-09-09 15:10:04 +02:00
parent f5e75453ea
commit e32eaa87af
11 changed files with 56 additions and 38 deletions

View file

@ -1,6 +1,6 @@
/***
This file is part of snapcast
Copyright (C) 2014-2020 Johannes Pohl
Copyright (C) 2014-2022 Johannes Pohl
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -16,12 +16,15 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
#ifndef PCM_CHUNK_H
#define PCM_CHUNK_H
#ifndef MESSAGE_PCM_CHUNK_HPP
#define MESSAGE_PCM_CHUNK_HPP
// local headers
#include "common/sample_format.hpp"
#include "message.hpp"
#include "wire_chunk.hpp"
// standard headers
#include <chrono>