GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
NotImplemented.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace gui_framework
6{
7 namespace exceptions
8 {
11 {
12 public:
13 NotImplemented(std::string_view methodName, std::string_view className, std::string_view fileName, int line);
14
15 ~NotImplemented() = default;
16 };
17 }
18}
Throws by not implemented methods.
NotImplemented(std::string_view methodName, std::string_view className, std::string_view fileName, int line)