aboutsummaryrefslogtreecommitdiff
path: root/include/aopacket.h
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2020-05-02 21:29:06 -0500
committeroldmud0 <oldmud0@users.noreply.github.com>2020-05-02 21:29:06 -0500
commitbbdad2a40d8f02fe738830d9cf66ad4ec2fa86cf (patch)
tree8e8892d24684f005b0e18624677957791e1738b7 /include/aopacket.h
parent1e2d71fb96ca85fa50c172c2f1cf22b2620bacd2 (diff)
parent992c0b14e155059a7e22ad72c0309b620c850a46 (diff)
Merge branch '2.7-rc'
Includes full code reformat. # Conflicts: # src/aomusicplayer.cpp # src/path_functions.cpp
Diffstat (limited to 'include/aopacket.h')
-rw-r--r--include/aopacket.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/aopacket.h b/include/aopacket.h
index 21f6e0f..4097be8 100644
--- a/include/aopacket.h
+++ b/include/aopacket.h
@@ -1,19 +1,18 @@
#ifndef AOPACKET_H
#define AOPACKET_H
+#include <QDebug>
#include <QString>
#include <QStringList>
-#include <QDebug>
-class AOPacket
-{
+class AOPacket {
public:
AOPacket(QString p_packet_string);
AOPacket(QString header, QStringList &p_contents);
~AOPacket();
- QString get_header() {return m_header;}
- QStringList &get_contents() {return m_contents;}
+ QString get_header() { return m_header; }
+ QStringList &get_contents() { return m_contents; }
QString to_string();
void encrypt_header(unsigned int p_key);