Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Commits
7464c842
Commit
7464c842
authored
3 years ago
by
Sebastian Gaida
Browse files
Options
Downloads
Patches
Plain Diff
[
#20
][Docu] adjusted comments in Window.hpp
parent
89e2e385
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!11
Resolve "Add Doxygen comments to existing code"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/vkcv/Window.hpp
+25
-6
25 additions, 6 deletions
src/vkcv/Window.hpp
with
25 additions
and
6 deletions
src/vkcv/Window.hpp
+
25
−
6
View file @
7464c842
...
...
@@ -12,17 +12,21 @@ namespace vkcv {
class
Window
final
{
private:
explicit
Window
(
GLFWwindow
*
window
);
GLFWwindow
*
m_window
;
/**
*
* @param GLFWwindow of the class
*/
explicit
Window
(
GLFWwindow
*
window
);
public:
/**
* creates a GLFWwindow with the parameters in the function
* @param windowTitle
* @param width
* @param height
* @param resizable
* @param
[in]
windowTitle
of the window
* @param
[in]
width
of the window (optional)
* @param
[in]
height
of the window (optional)
* @param
[in]
resizable
resize ability of the window (optional)
* @return Window class
*/
static
Window
create
(
const
char
*
windowTitle
,
int
width
=
-
1
,
int
height
=
-
1
,
bool
resizable
=
false
);
...
...
@@ -61,10 +65,25 @@ namespace vkcv {
[[
nodiscard
]]
int
getHeight
()
const
;
/**
* Copy-operator of #Window is deleted!
*
* @param other Other instance of #Window
* @return Reference to itself
*/
Window
&
operator
=
(
const
Window
&
other
)
=
delete
;
/**
* Move-operator of #Window uses default behavior!
*
* @param other Other instance of #Window
* @return Reference to itself
*/
Window
&
operator
=
(
Window
&&
other
)
=
default
;
/**
* Destructor of #Window, terminates GLFW
*/
virtual
~
Window
();
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment