-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
50 additions
and
41 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#pragma once | ||
|
||
#include "gui/dt_gui_base.hpp" | ||
|
||
#include <dv_gui_opengl/models/dv_command.hpp> | ||
|
||
namespace dvsku_toolkit { | ||
class dt_modal_errors : public dt_gui_base { | ||
public: | ||
dt_modal_errors() = delete; | ||
dt_modal_errors(const dt_modal_errors&) = delete; | ||
dt_modal_errors(dt_modal_errors&&) = delete; | ||
|
||
dt_modal_errors(dt_app& app); | ||
|
||
dt_modal_errors& operator=(const dt_modal_errors&) = delete; | ||
dt_modal_errors& operator=(dt_modal_errors&&) = delete; | ||
|
||
public: | ||
dvsku::dv_command_state render(); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters