Changeset 861874 for src/Actions


Ignore:
Timestamp:
Aug 5, 2010, 3:48:55 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, Candidate_v1.7.0, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
6a86ce
Parents:
0632c5
git-author:
Frederik Heber <heber@…> (08/05/10 15:46:45)
git-committer:
Frederik Heber <heber@…> (08/05/10 15:48:55)
Message:

libMolecuilderAction is now a shared lib via libtool.

This is all taken from the example available at http://www.openismus.com/documents/linux/building_libraries/building_libraries/building_libraries.shtml.

Necessary changes:

  • ValueStorage is now part of Actions, not of UIElements anymore (which is actually as it should have been right away, only Dialog uses ValueStorage and for all Actions ValueStorage is the simple adapter pattern to MapOfActions needed the relax (compilation) dependencies).
  • new files:
    • config/ltmain.sh (scipt for libtool)
    • libmolecuilder_config.h.in (extra config.h which is copied along with lib to contain how it has been compiled)
    • molecuilder.pc.in (package config information
  • BUGFIX: m4/gwqt4.m4 added -L$X_libraries, however $X_libraries was nowhere set and libtool admonished the empty "-L"
  • libMolecuilderUI now depends on libMolecuilderAction
  • all unit tests now have libMolecuilderAction and libMolecuilderUI due to non-interactive calls of actions
Location:
src/Actions
Files:
53 edited
2 moved

Legend:

Unmodified
Added
Removed
  • src/Actions/AnalysisAction/MolecularVolumeAction.cpp

    r0632c5 r861874  
    2525#include "UIElements/UIFactory.hpp"
    2626#include "UIElements/Dialog.hpp"
    27 #include "UIElements/ValueStorage.hpp"
     27#include "Actions/ValueStorage.hpp"
    2828
    2929const char AnalysisMolecularVolumeAction::NAME[] = "molecular-volume";
  • src/Actions/AnalysisAction/PairCorrelationAction.cpp

    r0632c5 r861874  
    2828#include "UIElements/UIFactory.hpp"
    2929#include "UIElements/Dialog.hpp"
    30 #include "UIElements/ValueStorage.hpp"
     30#include "Actions/ValueStorage.hpp"
    3131
    3232const char AnalysisPairCorrelationAction::NAME[] = "pair-correlation";
  • src/Actions/AnalysisAction/PointCorrelationAction.cpp

    r0632c5 r861874  
    2828#include "UIElements/UIFactory.hpp"
    2929#include "UIElements/Dialog.hpp"
    30 #include "UIElements/ValueStorage.hpp"
     30#include "Actions/ValueStorage.hpp"
    3131
    3232const char AnalysisPointCorrelationAction::NAME[] = "point-correlation";
  • src/Actions/AnalysisAction/PrincipalAxisSystemAction.cpp

    r0632c5 r861874  
    2121#include "UIElements/UIFactory.hpp"
    2222#include "UIElements/Dialog.hpp"
    23 #include "UIElements/ValueStorage.hpp"
     23#include "Actions/ValueStorage.hpp"
    2424
    2525const char AnalysisPrincipalAxisSystemAction::NAME[] = "principal-axis-system";
  • src/Actions/AnalysisAction/SurfaceCorrelationAction.cpp

    r0632c5 r861874  
    2828#include "UIElements/UIFactory.hpp"
    2929#include "UIElements/Dialog.hpp"
    30 #include "UIElements/ValueStorage.hpp"
     30#include "Actions/ValueStorage.hpp"
    3131
    3232const char AnalysisSurfaceCorrelationAction::NAME[] = "surface-correlation";
  • src/Actions/AtomAction/AddAction.cpp

    r0632c5 r861874  
    2525#include "UIElements/UIFactory.hpp"
    2626#include "UIElements/Dialog.hpp"
    27 #include "UIElements/ValueStorage.hpp"
     27#include "Actions/ValueStorage.hpp"
    2828
    2929const char AtomAddAction::NAME[] = "add-atom";
  • src/Actions/AtomAction/ChangeElementAction.cpp

    r0632c5 r861874  
    2424#include "UIElements/UIFactory.hpp"
    2525#include "UIElements/Dialog.hpp"
    26 #include "UIElements/ValueStorage.hpp"
     26#include "Actions/ValueStorage.hpp"
    2727
    2828const char AtomChangeElementAction::NAME[] = "change-element";
  • src/Actions/AtomAction/RemoveAction.cpp

    r0632c5 r861874  
    2424#include "UIElements/UIFactory.hpp"
    2525#include "UIElements/Dialog.hpp"
    26 #include "UIElements/ValueStorage.hpp"
     26#include "Actions/ValueStorage.hpp"
    2727
    2828const char AtomRemoveAction::NAME[] = "remove-atom";
  • src/Actions/CmdAction/BondLengthTableAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727const char CommandLineBondLengthTableAction::NAME[] = "bond-table";
  • src/Actions/CmdAction/ElementDbAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727const char CommandLineElementDbAction::NAME[] = "element-db";
  • src/Actions/CmdAction/FastParsingAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626// memento to remember the state when undoing
  • src/Actions/CmdAction/VerboseAction.cpp

    r0632c5 r861874  
    2020#include "UIElements/UIFactory.hpp"
    2121#include "UIElements/Dialog.hpp"
    22 #include "UIElements/ValueStorage.hpp"
     22#include "Actions/ValueStorage.hpp"
    2323
    2424// memento to remember the state when undoing
  • src/Actions/CmdAction/VersionAction.cpp

    r0632c5 r861874  
    1010#include "Actions/CmdAction/VersionAction.hpp"
    1111#include "Actions/ActionRegistry.hpp"
     12#include "version.h"
    1213
    1314#include <iostream>
     
    1819#include "UIElements/UIFactory.hpp"
    1920#include "UIElements/Dialog.hpp"
    20 #include "UIElements/ValueStorage.hpp"
     21#include "Actions/ValueStorage.hpp"
    2122
    2223const char CommandLineVersionAction::NAME[] = "version";
  • src/Actions/FragmentationAction/DepthFirstSearchAction.cpp

    r0632c5 r861874  
    2828#include "UIElements/UIFactory.hpp"
    2929#include "UIElements/Dialog.hpp"
    30 #include "UIElements/ValueStorage.hpp"
     30#include "Actions/ValueStorage.hpp"
    3131
    3232const char FragmentationDepthFirstSearchAction::NAME[] = "depth-first-search";
  • src/Actions/FragmentationAction/FragmentationAction.cpp

    r0632c5 r861874  
    2626#include "UIElements/UIFactory.hpp"
    2727#include "UIElements/Dialog.hpp"
    28 #include "UIElements/ValueStorage.hpp"
     28#include "Actions/ValueStorage.hpp"
    2929
    3030const char FragmentationFragmentationAction::NAME[] = "fragment-mol";
  • src/Actions/FragmentationAction/SubgraphDissectionAction.cpp

    r0632c5 r861874  
    2525#include "UIElements/UIFactory.hpp"
    2626#include "UIElements/Dialog.hpp"
    27 #include "UIElements/ValueStorage.hpp"
     27#include "Actions/ValueStorage.hpp"
    2828
    2929const char FragmentationSubgraphDissectionAction::NAME[] = "subgraph-dissect";
  • src/Actions/Makefile.am

    r0632c5 r861874  
    66AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
    77AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
    8 
    9 noinst_LIBRARIES = libMolecuilderActions.a
    10 libMolecuilderActions_a_SOURCES = ${ACTIONSSOURCE} ${ACTIONSHEADER}
    118
    129ACTIONSSOURCE = \
     
    2017  ${TESSELATIONACTIONSOURCE} \
    2118  ${WORLDACTIONSOURCE} \
    22   MapOfActions.cpp
     19  MapOfActions.cpp \
     20  ValueStorage.cpp
    2321
    2422ACTIONSHEADER = \
     
    3331  ${WORLDACTIONHEADER} \
    3432  MapOfActions.hpp \
     33  ValueStorage.hpp \
    3534  Values.hpp
    3635 
     
    168167  WorldAction/SetOutputFormatsAction.hpp               
    169168
     169
     170lib_LTLIBRARIES = libMolecuilderActions-@MOLECUILDER_API_VERSION@.la
     171libMolecuilderActions_includedir = $(includedir)/molecuilder-$(MOLECUILDER_API_VERSION)/Actions/
     172libMolecuilderActions_libs = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
     173nobase_libMolecuilderActions_include_HEADERS = ${ACTIONSHEADER}
     174
     175## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
     176## target.  Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
     177## will therefore be treated as if it were literally part of the target name,
     178## and the variable name derived from that.
     179## The file extension .cc is recognized by Automake, and makes it produce
     180## rules which invoke the C++ compiler to produce a libtool object file (.lo)
     181## from each source file.  Note that it is not necessary to list header files
     182## which are already listed elsewhere in a _HEADERS variable assignment.
     183libMolecuilderActions_@MOLECUILDER_API_VERSION@_la_SOURCES = ${ACTIONSSOURCE}
     184
     185## Instruct libtool to include ABI version information in the generated shared
     186## library file (.so).  The library ABI version is defined in configure.ac, so
     187## that all version information is kept in one place.
     188libMolecuilderActions_@MOLECUILDER_API_VERSION@_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
     189
     190## The generated configuration header is installed in its own subdirectory of
     191## $(libdir).  The reason for this is that the configuration information put
     192## into this header file describes the target platform the installed library
     193## has been built for.  Thus the file must not be installed into a location
     194## intended for architecture-independent files, as defined by the Filesystem
     195## Hierarchy Standard (FHS).
     196## The nodist_ prefix instructs Automake to not generate rules for including
     197## the listed files in the distribution on 'make dist'.  Files that are listed
     198## in _HEADERS variables are normally included in the distribution, but the
     199## configuration header file is generated at configure time and should not be
     200## shipped with the source tarball.
     201libMolecuilderActions_libincludedir = $(libdir)/molecuilder-$(MOLECUILDER_API_VERSION)/include
     202nodist_libMolecuilderActions_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
     203
     204## Install the generated pkg-config file (.pc) into the expected location for
     205## architecture-dependent package configuration information.  Occasionally,
     206## pkg-config files are also used for architecture-independent data packages,
     207## in which case the correct install location would be $(datadir)/pkgconfig.
     208pkgconfigdir = $(libdir)/pkgconfig
     209pkgconfig_DATA = $(top_builddir)/molecuilder-$(MOLECUILDER_API_VERSION).pc
     210
  • src/Actions/MoleculeAction/BondFileAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727
  • src/Actions/MoleculeAction/ChangeNameAction.cpp

    r0632c5 r861874  
    2020#include "UIElements/UIFactory.hpp"
    2121#include "UIElements/Dialog.hpp"
    22 #include "UIElements/ValueStorage.hpp"
     22#include "Actions/ValueStorage.hpp"
    2323
    2424/****** MoleculeChangeNameAction *****/
  • src/Actions/MoleculeAction/FillWithMoleculeAction.cpp

    r0632c5 r861874  
    2626#include "UIElements/UIFactory.hpp"
    2727#include "UIElements/Dialog.hpp"
    28 #include "UIElements/ValueStorage.hpp"
     28#include "Actions/ValueStorage.hpp"
    2929
    3030/****** MoleculeFillWithMoleculeAction *****/
  • src/Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.cpp

    r0632c5 r861874  
    2525#include "UIElements/UIFactory.hpp"
    2626#include "UIElements/Dialog.hpp"
    27 #include "UIElements/ValueStorage.hpp"
     27#include "Actions/ValueStorage.hpp"
    2828
    2929
  • src/Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727/****** MoleculeRotateToPrincipalAxisSystemAction *****/
  • src/Actions/MoleculeAction/SaveAdjacencyAction.cpp

    r0632c5 r861874  
    2626#include "UIElements/UIFactory.hpp"
    2727#include "UIElements/Dialog.hpp"
    28 #include "UIElements/ValueStorage.hpp"
     28#include "Actions/ValueStorage.hpp"
    2929
    3030/****** MoleculeSaveAdjacencyAction *****/
  • src/Actions/MoleculeAction/SaveBondsAction.cpp

    r0632c5 r861874  
    2626#include "UIElements/UIFactory.hpp"
    2727#include "UIElements/Dialog.hpp"
    28 #include "UIElements/ValueStorage.hpp"
     28#include "Actions/ValueStorage.hpp"
    2929
    3030/****** MoleculeSaveBondsAction *****/
  • src/Actions/MoleculeAction/SaveTemperatureAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727/****** MoleculeSaveTemperatureAction *****/
  • src/Actions/MoleculeAction/SuspendInWaterAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727/****** MoleculeSuspendInWaterAction *****/
  • src/Actions/MoleculeAction/TranslateAction.cpp

    r0632c5 r861874  
    2424#include "UIElements/UIFactory.hpp"
    2525#include "UIElements/Dialog.hpp"
    26 #include "UIElements/ValueStorage.hpp"
     26#include "Actions/ValueStorage.hpp"
    2727
    2828/****** MoleculeTranslateAction *****/
  • src/Actions/MoleculeAction/VerletIntegrationAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727/****** MoleculeVerletIntegrationAction *****/
  • src/Actions/ParserAction/LoadXyzAction.cpp

    r0632c5 r861874  
    2626#include "UIElements/UIFactory.hpp"
    2727#include "UIElements/Dialog.hpp"
    28 #include "UIElements/ValueStorage.hpp"
     28#include "Actions/ValueStorage.hpp"
    2929
    3030/****** ParserLoadXyzAction *****/
  • src/Actions/ParserAction/SaveXyzAction.cpp

    r0632c5 r861874  
    2121#include "UIElements/UIFactory.hpp"
    2222#include "UIElements/Dialog.hpp"
    23 #include "UIElements/ValueStorage.hpp"
     23#include "Actions/ValueStorage.hpp"
    2424
    2525
  • src/Actions/SelectionAction/AllAtomsAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727
  • src/Actions/SelectionAction/AllMoleculesAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727
  • src/Actions/SelectionAction/AtomByIdAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626
  • src/Actions/SelectionAction/MoleculeByIdAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626
  • src/Actions/SelectionAction/NotAllAtomsAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727
  • src/Actions/SelectionAction/NotAllMoleculesAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727
  • src/Actions/SelectionAction/NotAtomByIdAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626
  • src/Actions/SelectionAction/NotMoleculeByIdAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626
  • src/Actions/TesselationAction/ConvexEnvelopeAction.cpp

    r0632c5 r861874  
    2525#include "UIElements/UIFactory.hpp"
    2626#include "UIElements/Dialog.hpp"
    27 #include "UIElements/ValueStorage.hpp"
     27#include "Actions/ValueStorage.hpp"
    2828
    2929/****** TesselationConvexEnvelopeAction *****/
  • src/Actions/TesselationAction/NonConvexEnvelopeAction.cpp

    r0632c5 r861874  
    2424#include "UIElements/UIFactory.hpp"
    2525#include "UIElements/Dialog.hpp"
    26 #include "UIElements/ValueStorage.hpp"
     26#include "Actions/ValueStorage.hpp"
    2727
    2828/****** TesselationNonConvexEnvelopeAction *****/
  • src/Actions/WorldAction/AddEmptyBoundaryAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626#include "Helpers/Assert.hpp"
    2727
  • src/Actions/WorldAction/BoundInBoxAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626const char WorldBoundInBoxAction::NAME[] = "bound-in-box";
  • src/Actions/WorldAction/CenterInBoxAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626const char WorldCenterInBoxAction::NAME[] = "center-in-box";
  • src/Actions/WorldAction/CenterOnEdgeAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626#include "Helpers/Assert.hpp"
    2727
  • src/Actions/WorldAction/ChangeBoxAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727const char WorldChangeBoxAction::NAME[] = "change-box";
  • src/Actions/WorldAction/InputAction.cpp

    r0632c5 r861874  
    2424#include "UIElements/UIFactory.hpp"
    2525#include "UIElements/Dialog.hpp"
    26 #include "UIElements/ValueStorage.hpp"
     26#include "Actions/ValueStorage.hpp"
    2727
    2828const char WorldInputAction::NAME[] = "input";
  • src/Actions/WorldAction/OutputAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626const char WorldOutputAction::NAME[] = "output";
  • src/Actions/WorldAction/RemoveSphereOfAtomsAction.cpp

    r0632c5 r861874  
    2525#include "UIElements/UIFactory.hpp"
    2626#include "UIElements/Dialog.hpp"
    27 #include "UIElements/ValueStorage.hpp"
     27#include "Actions/ValueStorage.hpp"
    2828
    2929const char WorldRemoveSphereOfAtomsAction::NAME[] = "remove-sphere";
  • src/Actions/WorldAction/RepeatBoxAction.cpp

    r0632c5 r861874  
    2626#include "UIElements/UIFactory.hpp"
    2727#include "UIElements/Dialog.hpp"
    28 #include "UIElements/ValueStorage.hpp"
     28#include "Actions/ValueStorage.hpp"
    2929#include "Descriptors/MoleculeDescriptor.hpp"
    3030#include "Descriptors/MoleculePtrDescriptor.hpp"
  • src/Actions/WorldAction/ScaleBoxAction.cpp

    r0632c5 r861874  
    2525#include "UIElements/UIFactory.hpp"
    2626#include "UIElements/Dialog.hpp"
    27 #include "UIElements/ValueStorage.hpp"
     27#include "Actions/ValueStorage.hpp"
    2828
    2929const char WorldScaleBoxAction::NAME[] = "scale-box";
  • src/Actions/WorldAction/SetDefaultNameAction.cpp

    r0632c5 r861874  
    2121#include "UIElements/UIFactory.hpp"
    2222#include "UIElements/Dialog.hpp"
    23 #include "UIElements/ValueStorage.hpp"
     23#include "Actions/ValueStorage.hpp"
    2424
    2525
  • src/Actions/WorldAction/SetGaussianBasisAction.cpp

    r0632c5 r861874  
    2222#include "UIElements/UIFactory.hpp"
    2323#include "UIElements/Dialog.hpp"
    24 #include "UIElements/ValueStorage.hpp"
     24#include "Actions/ValueStorage.hpp"
    2525
    2626
  • src/Actions/WorldAction/SetOutputFormatsAction.cpp

    r0632c5 r861874  
    2323#include "UIElements/UIFactory.hpp"
    2424#include "UIElements/Dialog.hpp"
    25 #include "UIElements/ValueStorage.hpp"
     25#include "Actions/ValueStorage.hpp"
    2626
    2727const char WorldSetOutputFormatsAction::NAME[] = "set-output";
Note: See TracChangeset for help on using the changeset viewer.