Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IRDB SDK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository 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
Open Source Software
IRDB SDK
Commits
f63323b8
Commit
f63323b8
authored
1 month ago
by
Jason Hiser
Browse files
Options
Downloads
Patches
Plain Diff
Updates to get const correctness up to snuff for c++17
parent
274216c8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/inc-core/dbinterface.hpp
+2
-2
2 additions, 2 deletions
include/inc-core/dbinterface.hpp
include/inc-core/pqxxdb.hpp
+2
-2
2 additions, 2 deletions
include/inc-core/pqxxdb.hpp
with
4 additions
and
4 deletions
include/inc-core/dbinterface.hpp
+
2
−
2
View file @
f63323b8
...
...
@@ -38,9 +38,9 @@ namespace IRDB_SDK
public
:
virtual
~
DBinterface_t
()
{};
virtual
void
issueQuery
(
string
query
)
=
0
;
virtual
void
issueQuery
(
const
string
&
query
)
=
0
;
virtual
void
moveToNextRow
()
=
0
;
virtual
string
getResultColumn
(
string
colname
)
=
0
;
virtual
string
getResultColumn
(
const
string
&
colname
)
=
0
;
virtual
bool
isDone
()
=
0
;
virtual
void
commit
()
=
0
;
...
...
This diff is collapsed.
Click to expand it.
include/inc-core/pqxxdb.hpp
+
2
−
2
View file @
f63323b8
...
...
@@ -27,10 +27,10 @@ namespace IRDB_SDK
public
:
virtual
~
pqxxDB_t
()
{
};
virtual
void
issueQuery
(
string
query
)
=
0
;
virtual
void
issueQuery
(
const
string
&
query
)
=
0
;
virtual
void
issueQuery
(
stringstream
&
query
)
=
0
;
virtual
void
moveToNextRow
()
=
0
;
virtual
string
getResultColumn
(
string
colname
)
=
0
;
virtual
string
getResultColumn
(
const
string
&
colname
)
=
0
;
virtual
bool
isDone
()
=
0
;
virtual
void
commit
()
=
0
;
virtual
pqxx
::
connection
&
...
...
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