MXVK Vulkan Framework
0.24.0
C++20 Vulkan rendering framework for practical 2D and 3D application development with SDL3.
Loading...
Searching...
No Matches
mxvk_exception.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <iostream>
4
#include <string>
5
6
namespace
mxvk
{
7
class
Exception
{
8
public
:
9
Exception
(
const
std::string &
text
) : txt{
text
} {}
10
std::string
text
()
const
{
return
txt; }
11
12
private
:
13
std::string txt;
14
};
15
}
// namespace mxvk
mxvk::Exception::text
std::string text() const
Definition
mxvk_exception.hpp:10
mxvk::Exception::Exception
Exception(const std::string &text)
Definition
mxvk_exception.hpp:9
mxvk
Utilities for loading and saving PNG images.
Definition
mxvk.hpp:30
mxvk
include
mxvk
mxvk_exception.hpp
Generated by
1.16.1