Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
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
schwede
openstructure
Commits
ef0ad315
Commit
ef0ad315
authored
9 years ago
by
Bienchen
Browse files
Options
Downloads
Patches
Plain Diff
Added inchi to compound
parent
9be29bc5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/conop/src/compound.hh
+8
-2
8 additions, 2 deletions
modules/conop/src/compound.hh
with
8 additions
and
2 deletions
modules/conop/src/compound.hh
+
8
−
2
View file @
ef0ad315
...
...
@@ -147,6 +147,7 @@ public:
tlc_
(
id
),
formula_
(),
name_
(),
inchi_
(),
atom_specs_
(),
bond_specs_
(),
chem_class_
(),
...
...
@@ -237,11 +238,15 @@ public:
const
String
&
GetName
()
{
return
name_
;
}
void
SetName
(
const
String
&
name
)
{
name_
=
name
;
}
void
SetFormula
(
const
String
&
formula
)
{
formula_
=
formula
;
}
const
String
&
GetFormula
()
{
return
formula_
;
}
void
SetInchi
(
const
String
&
inchi
)
{
inchi_
=
inchi
;
}
const
String
&
GetInchi
()
{
return
inchi_
;
}
const
BondSpecList
&
GetBondSpecs
()
const
{
return
bond_specs_
;
}
...
...
@@ -269,6 +274,7 @@ private:
String
tlc_
;
String
formula_
;
String
name_
;
String
inchi_
;
AtomSpecList
atom_specs_
;
BondSpecList
bond_specs_
;
mol
::
ChemClass
chem_class_
;
...
...
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