Raytracer
Loading...
Searching...
No Matches
IArguments.hpp
1#include "arguments/Kinds.hpp"
2
3#ifndef __IARGUMENTS_HPP__
4 #define __IARGUMENTS_HPP__
5
6namespace Raytracer::Interfaces
7{
8 class IArguments {
9 public:
10 virtual ~IArguments() = default;
11 virtual Arguments::ArgumentKind kind() const = 0;
12 };
13} // namespace Raytracer::Interfaces
14
15#endif /* __IARGUMENTS_HPP__ */
Definition IArguments.hpp:8