TinyRaytracer 0.1
A simple C++ raytracer
Loading...
Searching...
No Matches
parse.hpp
Go to the documentation of this file.
1
11#ifndef PARSE_H
12#define PARSE_H
13
14#include <string>
15#include <sstream>
16#include <vector>
17
18void parseInput(char* argv[]);
19
20void parseLine(std::vector<std::string> words);
21
22#endif