Skip to content

Commit

Permalink
Add file headers
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldoylecs committed Feb 11, 2018
1 parent d13b9a4 commit 72ae0de
Show file tree
Hide file tree
Showing 17 changed files with 98 additions and 76 deletions.
16 changes: 8 additions & 8 deletions RocketAnalyticsLib/include/Byte.hpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/******************************************************************************
* Author: Michael Doyle
* Date: 8/13/17
* File: Byte.hpp
* Description:
* Byte is a representation of a byte of data that allows for accessing
* individual bits in O(1) time. bit1 is the highest left most bit in a
* binary number representation of the given value.
*****************************************************************************/
* Author: Michael Doyle
* Date: 8/13/17
* File: Byte.hpp
* Description:
* Byte is a representation of a byte of data that allows for accessing
* individual bits in O(1) time. bit1 is the highest left most bit in a
* binary number representation of the given value.
*****************************************************************************/

#ifndef BYTE_H
#define BYTE_H
Expand Down
14 changes: 7 additions & 7 deletions RocketAnalyticsLib/include/ReplayFile.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/******************************************************************************
* Author: Michael Doyle
* Date: 7/23/17
* File: ReplayFile.hpp
* Description:
* ReplayFile contains all of the information stored in a Rocket League
* replay file.
*****************************************************************************/
* Author: Michael Doyle
* Date: 7/23/17
* File: ReplayFile.hpp
* Description:
* ReplayFile contains all of the information stored in a Rocket League
* replay file.
*****************************************************************************/

#ifndef REPLAY_FILE_H
#define REPLAY_FILE_H
Expand Down
14 changes: 7 additions & 7 deletions RocketAnalyticsLib/include/ReplayFileReader.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/******************************************************************************
* Author: Michael Doyle
* Date: 7/23/17
* File: ReplayFileReader.hpp
* Description:
* ReplayFileReader handles the logic in reading Rocket League replay
* files.
*****************************************************************************/
* Author: Michael Doyle
* Date: 7/23/17
* File: ReplayFileReader.hpp
* Description:
* ReplayFileReader handles the logic in reading Rocket League replay
* files.
*****************************************************************************/

#ifndef REPLAY_FILE_READER_H
#define REPLAY_FILE_READER_H
Expand Down
14 changes: 7 additions & 7 deletions RocketAnalyticsLib/include/ReplayHeader.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/******************************************************************************
* Author: Michael Doyle
* Date: 8/10/17
* File: ReplayHeader.hpp
* Description:
* ReplayHeader contains the basic information of a Rocket League
* replay file.
*****************************************************************************/
* Author: Michael Doyle
* Date: 8/10/17
* File: ReplayHeader.hpp
* Description:
* ReplayHeader contains the basic information of a Rocket League
* replay file.
*****************************************************************************/

#ifndef REPLAY_HEADER_H
#define REPLAY_HEADER_H
Expand Down
14 changes: 7 additions & 7 deletions RocketAnalyticsLib/include/ReplayLevels.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/******************************************************************************
* Author: Michael Doyle
* Date: 1/28/18
* File: ReplayLevels.hpp
* Description:
* ReplayLevels contains all of the maps included in the Rocket League
* replay file.
*****************************************************************************/
* Author: Michael Doyle
* Date: 1/28/18
* File: ReplayLevels.hpp
* Description:
* ReplayLevels contains all of the maps included in the Rocket League
* replay file.
*****************************************************************************/

#ifndef REPLAY_LEVELS_H
#define REPLAY_LEVELS_H
Expand Down
14 changes: 7 additions & 7 deletions RocketAnalyticsLib/include/Version.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/******************************************************************************
* Author: Michael Doyle
* Date: 8/10/17
* File: Version.hpp
* Description:
* Versions contains the versioning information found the the Rocket
* League replay file.
*****************************************************************************/
* Author: Michael Doyle
* Date: 8/10/17
* File: Version.hpp
* Description:
* Versions contains the versioning information found the the Rocket
* League replay file.
*****************************************************************************/

#ifndef VERSION_H
#define VERSION_H
Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/BinaryReader.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/13/17
// BinaryReader.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/13/17
* File: BinaryReader.cpp
*****************************************************************************/

#include "BinaryReader.hpp"
#include <fstream>
Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/Byte.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/13/17
// Byte.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/13/17
* File: Byte.cpp
*****************************************************************************/

#include "Byte.hpp"

Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/ReplayFile.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/10/17
// ReplayFile.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/10/17
* File: ReplayFile.cpp
*****************************************************************************/

#include "ReplayFile.hpp"
#include "BinaryReader.hpp"
Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/ReplayFileReader.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 7/23/17
// ReplayFileReader.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 7/23/17
* File: ReplayFileReader.cpp
*****************************************************************************/

#include "../include/ReplayFileReader.hpp"
#include <iostream>
Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/ReplayHeader.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/24/17
// ReplayHeader.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/24/17
* File: ReplayHeader.cpp
*****************************************************************************/

#include "ReplayHeader.hpp"
#include <iostream>
Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/ReplayLevels.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/24/17
// ReplayHeader.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 1/28/17
* File: ReplayLevels.cpp
*****************************************************************************/

#include <iostream>
#include "ReplayLevels.hpp"
Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/Version.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/10/17
// Version.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/10/17
* File: Version.cpp
*****************************************************************************/

#include "Version.hpp"

Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/properties/ByteValue.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/12/17
// ByteValue.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/12/17
* File: ByteValue.cpp
*****************************************************************************/

#include "ByteValue.hpp"

Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/properties/Property.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/11/17
// Property.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/11/17
* File: Property.cpp
*****************************************************************************/

#include "PropertyValue.hpp"
#include "Property.hpp"
Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/properties/PropertyType.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/11/17
// PropertyType.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/11/17
* File: PropertyType.cpp
*****************************************************************************/

#include "properties\PropertyType.hpp"

Expand Down
8 changes: 5 additions & 3 deletions RocketAnalyticsLib/src/properties/PropertyValue.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Author: Michael Doyle
// Date: 8/12/17
// PropertyValue.cpp
/******************************************************************************
* Author: Michael Doyle
* Date: 8/12/17
* File: PropertyValue.cpp
*****************************************************************************/

#include "ByteValue.hpp"
#include "PropertyType.hpp"
Expand Down

0 comments on commit 72ae0de

Please sign in to comment.