13 lines
174 B
C++
13 lines
174 B
C++
#include <psemek/util/not_implemented.hpp>
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace psemek::util
|
|
{
|
|
|
|
void not_implemented ( )
|
|
{
|
|
throw std::runtime_error("Not implemented");
|
|
}
|
|
|
|
}
|