CMSC23700 Common Code Library
Support code for CS23700 programming projects
Loading...
Searching...
No Matches
cs237-types.hpp
Go to the documentation of this file.
1
8/*
9 * COPYRIGHT (c) 2023 John Reppy (http://cs.uchicago.edu/~jhr)
10 * All rights reserved.
11 */
12
13#ifndef _CS237_TYPES_HPP_
14#define _CS237_TYPES_HPP_
15
16#ifndef _CS237_HPP_
17#error "cs237-types.hpp should not be included directly"
18#endif
19
20namespace cs237 {
21
22 class Application;
23 class Window;
24 class Buffer;
25 class Shaders;
26
27} /* namespace cs237 */
28
29#endif /* !_CS237_TYPES_HPP_ */
30
Definition cs237-aabb.hpp:22