PetaVision  Alpha
Patch.hpp
1 /*
2  * Patch
3  *
4  * Created on Jul 28, 2017
5  * Author: Pete Schultz
6  */
7 
8 #ifndef PVPATCH_HPP_
9 #define PVPATCH_HPP_
10 
11 #include <cstdint>
12 
13 namespace PV {
14 
15 struct Patch {
16  std::uint32_t offset;
17  std::uint16_t nx, ny;
18 };
19 
20 } // end namespace PV
21 
22 #endif // PVPATCH_HPP_