mirror of
https://github.com/TomHarte/CLK.git
synced 2024-10-31 18:04:37 +00:00
21 lines
283 B
C++
21 lines
283 B
C++
//
|
|
// Storage.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 10/07/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Storage_hpp
|
|
#define Storage_hpp
|
|
|
|
namespace Storage {
|
|
|
|
struct Time {
|
|
unsigned int length, clock_rate;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* Storage_h */
|