1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Renames files to match project convention.

This commit is contained in:
Thomas Harte
2020-03-19 23:24:06 -04:00
parent b8b335f67d
commit 69277bbb27
18 changed files with 37 additions and 37 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
//
// Enum.h
// Enum.hpp
// Clock Signal
//
// Created by Thomas Harte on 17/02/2020.
// Copyright © 2020 Thomas Harte. All rights reserved.
//
#ifndef Enum_h
#define Enum_h
#ifndef Enum_hpp
#define Enum_hpp
#include <algorithm>
#include <cctype>
@@ -170,4 +170,4 @@ class Enum {
}
#endif /* Enum_h */
#endif /* Enum_hpp */
+1 -1
View File
@@ -6,7 +6,7 @@
// Copyright © 2020 Thomas Harte. All rights reserved.
//
#include "Struct.h"
#include "Struct.hpp"
#include <algorithm>
@@ -1,13 +1,13 @@
//
// Struct.h
// Struct.hpp
// Clock Signal
//
// Created by Thomas Harte on 06/03/2020.
// Copyright © 2020 Thomas Harte. All rights reserved.
//
#ifndef Struct_h
#define Struct_h
#ifndef Struct_hpp
#define Struct_hpp
#include <cstdarg>
#include <cstring>
@@ -17,7 +17,7 @@
#include <unordered_map>
#include <vector>
#include "Enum.h"
#include "Enum.hpp"
namespace Reflection {
@@ -269,4 +269,4 @@ template <typename Owner> class StructImpl: public Struct {
}
#endif /* Struct_h */
#endif /* Struct_hpp */