Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-cpplib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
caosdb
Software
caosdb-cpplib
Commits
12e47bd5
Commit
12e47bd5
authored
3 years ago
by
Daniel Hornung
Browse files
Options
Downloads
Patches
Plain Diff
DOC: SKIP_LINTING and deleted Property copy constructor.
parent
63f79bab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!12
F consolidation
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README_SETUP.md
+2
-0
2 additions, 0 deletions
README_SETUP.md
include/caosdb/entity.h
+10
-0
10 additions, 0 deletions
include/caosdb/entity.h
with
12 additions
and
0 deletions
README_SETUP.md
+
2
−
0
View file @
12e47bd5
...
@@ -77,6 +77,8 @@ For the tests there is a slightly different setup required (with option `-D CMAK
...
@@ -77,6 +77,8 @@ For the tests there is a slightly different setup required (with option `-D CMAK
1.
`mkdir build && cd build/`
1.
`mkdir build && cd build/`
2.
`conan install .. -s "compiler.libcxx=libstdc++11"`
2.
`conan install .. -s "compiler.libcxx=libstdc++11"`
3.
`cmake -B . -D CMAKE_BUILD_TYPE=Debug ..`
3.
`cmake -B . -D CMAKE_BUILD_TYPE=Debug ..`
*
If your clang-format version is too old, formatting, linting etc. can be skipped:
`cmake -B . -D CMAKE_BUILD_TYPE=Debug -D SKIP_LINTING=ON ..`
4.
`cmake --build .`
4.
`cmake --build .`
### Run
### Run
...
...
This diff is collapsed.
Click to expand it.
include/caosdb/entity.h
+
10
−
0
View file @
12e47bd5
...
@@ -558,6 +558,16 @@ private:
...
@@ -558,6 +558,16 @@ private:
* Container for Properties of Entities.
* Container for Properties of Entities.
*
*
* Should only be instantiated and write-accessed by the owning entity.
* Should only be instantiated and write-accessed by the owning entity.
*
* Note that iterating over the Property contents only works via references, since the Property copy
* constructor is deliberately disabled:
*
* \code
* // Accessing single properties as reference
* auto &property = my_properties.at(0);
* // Iterating via reference
* for (auto &property : my_properties) {...}
* \endcode
*/
*/
class
Properties
class
Properties
:
public
RepeatedPtrFieldWrapper
<
Property
,
:
public
RepeatedPtrFieldWrapper
<
Property
,
...
...
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