Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
ITABase
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Institute of Technical Acoustics (ITA)
ITABase
Commits
6da506d7
Commit
6da506d7
authored
Dec 20, 2016
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing API def for header-only class ita data log, also a network error excaption code added.
parent
3d6b1178
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
include/ITADataLog.h
include/ITADataLog.h
+1
-1
include/ITAException.h
include/ITAException.h
+1
-0
src/ITAException.cpp
src/ITAException.cpp
+3
-0
No files found.
include/ITADataLog.h
View file @
6da506d7
...
...
@@ -32,7 +32,7 @@
/**
* Realisiert Formattierungsfunktionen fr Konsolen-/Dateiausgabe
*/
ITA_BASE_API
class
ITALogDataBase
class
ITALogDataBase
{
public:
inline
virtual
~
ITALogDataBase
()
{};
...
...
include/ITAException.h
View file @
6da506d7
...
...
@@ -44,6 +44,7 @@ public:
PARSE_ERROR
,
SYNTAX_ERROR
,
CONFIG_ERROR
,
NETWORK_ERROR
,
LAST
,
};
...
...
src/ITAException.cpp
View file @
6da506d7
...
...
@@ -19,6 +19,9 @@ std::string ITAException::ToString() const
case
ITAException
::
NOT_IMPLEMENTED
:
sError
=
"Not implemented"
;
break
;
case
ITAException
::
NETWORK_ERROR
:
sError
=
"Network error"
;
break
;
case
ITAException
::
UNKNOWN
:
default:
sError
=
"Unkown error"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment