Skip to content

Commit

Permalink
added namespace pt and removed NuclearGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
jlheflin committed Sep 6, 2024
1 parent 5de1185 commit ba3e78b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ __pycache__
# These are directories used by IDEs for storing settings
.idea/
.vscode/

.cache/
# These are common Python virtual enviornment directory names
venv/
docs/venv/
Expand Down
15 changes: 3 additions & 12 deletions src/python/export_ghostfragment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,18 @@
#include <ghostfragment/ghostfragment.hpp>
#include <pluginplay/pluginplay.hpp>

namespace ghostfragment::pt {
namespace ghostfragment {

EXPORT_PLUGIN(ghostfragment, m) {

using namespace pt;
EXPORT_PROPERTY_TYPE(CappedFragments, m);
// EXPORT_PROPERTY_TYPE(pt::CappedFragmentsTraits, m);
EXPORT_PROPERTY_TYPE(NuclearGraphToFragments, m);
// EXPORT_PROPERTY_TYPE(pt::NuclearGraphToFragmentsTraits, m);
EXPORT_PROPERTY_TYPE(NuclearGraph, m);
// EXPORT_PROPERTY_TYPE(pt::NuclearGraphTraits, m);
EXPORT_PROPERTY_TYPE(FragmentedNuclei, m);
// EXPORT_PROPERTY_TYPE(pt::FragmentedNucleiTraits, m);
EXPORT_PROPERTY_TYPE(FragmentedChemicalSystem, m);
// EXPORT_PROPERTY_TYPE(pt::FragmentedChemicalSystemTraits, m);
EXPORT_PROPERTY_TYPE(FragmentWeights, m);
// EXPORT_PROPERTY_TYPE(pt::FragmentWeightsTraits, m);
EXPORT_PROPERTY_TYPE(ConnectivityTable, m);
// EXPORT_PROPERTY_TYPE(pt::ConnectivityTableTraits, m);
EXPORT_PROPERTY_TYPE(BrokenBonds, m);
// EXPORT_PROPERTY_TYPE(pt::BrokenBondsTraits, m);
EXPORT_PROPERTY_TYPE(Intersections, m);
// EXPORT_PROPERTY_TYPE(pt::IntersectionTraits, m);
}

} // namespace ghostfragment

0 comments on commit ba3e78b

Please sign in to comment.