-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
e99e98f
commit 0b260ba
Showing
1,070 changed files
with
6,669 additions
and
5,466 deletions.
There are no files selected for viewing
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
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
16 changes: 16 additions & 0 deletions
16
GUIFramework/src/Exceptions/CantFindCompositeFunctionException.cpp
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,16 @@ | ||
#include "pch.h" | ||
#include "CantFindCompositeFunctionException.h" | ||
|
||
using namespace std; | ||
|
||
namespace gui_framework | ||
{ | ||
namespace exceptions | ||
{ | ||
CantFindCompositeFunctionException::CantFindCompositeFunctionException(const string& functionName) : | ||
BaseGUIFrameworkException(format("Cant find 'CREATE_DEFAULT_WINDOW_FUNCTION({})' macro", functionName)) | ||
{ | ||
|
||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
GUIFramework/src/Exceptions/CantFindCompositeFunctionException.h
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,19 @@ | ||
#pragma once | ||
|
||
#include "pch.h" | ||
#include "BaseGUIFrameworkException.h" | ||
|
||
namespace gui_framework | ||
{ | ||
namespace exceptions | ||
{ | ||
/// @brief Can't find CREATE_DEFAULT_WINDOW_FUNCTION macro for specific window | ||
class GUI_FRAMEWORK_API CantFindCompositeFunctionException : public BaseGUIFrameworkException | ||
{ | ||
public: | ||
CantFindCompositeFunctionException(const std::string& functionName); | ||
|
||
~CantFindCompositeFunctionException() = default; | ||
}; | ||
} | ||
} |
16 changes: 0 additions & 16 deletions
16
GUIFramework/src/Exceptions/CantFindSeparateWindowFunctionException.cpp
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
GUIFramework/src/Exceptions/CantFindSeparateWindowFunctionException.h
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
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
Oops, something went wrong.