Salome HOME
91d2026f724ad08532cc69bd2aa8b974539fd830
[modules/shaper.git] / doc / Modules.doc
1 // Special file to define and describe the modules (goups)
2
3 /**
4  * \defgroup DataModel Data model
5  *
6  * \brief Structures for storage and management the application data.
7  * 
8  * Data structures are unified and splitted in universal <b>ModelAPI</b> package.
9  * The OCCT specialized implementation of ModelAPI interfaces is located in the <b>Model</b>.
10  * The geometrical primitives interfaces in <b>GeomAPI</b> package are supported by geometrical 
11  * persistence elements in <b>GeomDatAPI</b> interface and has OCCT-specific implementation in GeomData package.
12  *
13  */
14
15 /**
16  * \defgroup DataAlgo Algorithms
17  *
18  * \brief Different algorithm used in the application
19  * 
20  * The geometrical algorithms implementation (basing on OCCT libraries) are located in <b>GeomAlgoAPI</b>.
21  *
22  */
23
24 /**
25  * \defgroup Plugins Plugins
26  *
27  * \brief Implementation of specific features of the application is concentrated in plugins.
28  * 
29  * The C++ and Python features implementations are located in plugins: specially organized libraries
30  * and configuration files that allows to define the user interface and specific algorithms.
31  * There are many plugins that should be extended wit hthe development of the application. The names
32  * of plugin-packages are ended with "Plugin" string:
33  * <b>PartSetPlugin</b>, <b>ConstructionPlugin</b>, <b>SketchPlugin</b>, <b>FeaturesPlugins</b>, etc.
34  *
35  */
36
37 /**
38  * \defgroup Validators Validators
39  *
40  * \brief Implementation of internal logic of the feature
41  * 
42  * Validators are used for checking validity of the feature: each argument, 
43  * dependencies between the arguments. Validators are defined in the 
44  * configuration files and may be also used for selection filters (ModuleBase_SelectionValidator),
45  * passing configurable parameters from XML file to the feature implementation 
46  * (like in ExchangePlugin_ImportFormatValidator).
47  *
48  */