- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/SaveAdjacencyAction.cpp
rbe21fa rf10b0c 42 42 for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) { 43 43 mol = iter->second; 44 LOG(0, "Storing adjacency to path " << params.adjacencyfile << ".");44 LOG(0, "Storing adjacency to path " << params.adjacencyfile.get() << "."); 45 45 // TODO: sollte stream nicht filename benutzen, besser fuer unit test 46 46 #if BOOST_VERSION >= 104600 47 mol->StoreAdjacencyToFile(params.adjacencyfile. leaf().string(), params.adjacencyfile.branch_path().string());47 mol->StoreAdjacencyToFile(params.adjacencyfile.get().leaf().string(), params.adjacencyfile.get().branch_path().string()); 48 48 #else 49 mol->StoreAdjacencyToFile(params.adjacencyfile. leaf(), params.adjacencyfile.branch_path().string());49 mol->StoreAdjacencyToFile(params.adjacencyfile.get().leaf(), params.adjacencyfile.get().branch_path().string()); 50 50 #endif 51 51 }
Note:
See TracChangeset
for help on using the changeset viewer.