1
0
Fork 0

remove unnecessary headers

This commit is contained in:
Kevin Matz 2023-05-15 10:55:39 -04:00
parent fe4d94628c
commit 767c0a9e34
1 changed files with 1 additions and 3 deletions

View File

@ -23,11 +23,9 @@
*/
#pragma once
#include "argument.h"
#include <bufferstream.h>
#include <memory>
#include "message.h"
#include <string>
#include <vector>
namespace OSC {
@ -41,7 +39,7 @@ namespace OSC {
* Inherits from Message as a Bundle may also be a Bundle Element.
*/
struct Bundle
: public Message
: Message
{
///@brief Bundle
Bundle() { address_pattern = "#bundle"; }