OpenFOAM-4.x-lab/src/thermophysicalModels
Henry Weller ac71f86574 UList: Rationalize assignment (shallow-copy vs deep-copy)
//- Disallow default shallow-copy assignment
    //
    //  Assignment of UList<T> may need to be either shallow (copy pointer)
    //  or deep (copy elements) depending on context or the particular type
    //  of list derived from UList and it is confusing and prone to error
    //  for the default assignment to be either.  The solution is to
    //  disallow default assignment and provide separate 'shallowCopy' and
    //  'deepCopy' member functions.
    void operator=(const UList<T>&) = delete;

    //- Copy the pointer held by the given UList.
    inline void shallowCopy(const UList<T>&);

    //- Copy elements of the given UList.
    void deepCopy(const UList<T>&);
2016-04-03 10:26:05 +01:00
..
barotropicCompressibilityModel OpenFOAM: Updated all libraries, solvers and utilities to use the new const-safe tmp 2016-02-26 17:31:28 +00:00
basic Rationalized the indentation of C-preprocessor directives 2016-02-29 15:42:03 +00:00
chemistryModel Matrix: Added (i, j) addressing to allow support for addressing blocks of the matrix 2016-03-20 19:44:29 +00:00
laminarFlameSpeed OpenFOAM: Updated all libraries, solvers and utilities to use the new const-safe tmp 2016-02-26 17:31:28 +00:00
properties OpenFOAM: Updated all libraries, solvers and utilities to use the new const-safe tmp 2016-02-26 17:31:28 +00:00
radiation UList: Rationalize assignment (shallow-copy vs deep-copy) 2016-04-03 10:26:05 +01:00
reactionThermo Rationalized the indentation of C-preprocessor directives 2016-02-29 15:42:03 +00:00
SLGThermo OpenFOAM: Updated all libraries, solvers and utilities to use the new const-safe tmp 2016-02-26 17:31:28 +00:00
solidChemistryModel Matrix: Added (i, j) addressing to allow support for addressing blocks of the matrix 2016-03-20 19:44:29 +00:00
solidSpecie Rationalized the indentation of C-preprocessor directives 2016-02-29 15:42:03 +00:00
solidThermo Rationalized the indentation of C-preprocessor directives 2016-02-29 15:42:03 +00:00
specie Rationalized the indentation of C-preprocessor directives 2016-02-29 15:42:03 +00:00
thermophysicalFunctions Info -> InfoInFunction and updated comments 2016-01-20 10:18:13 +00:00
Allwmake scripts: Reformat with consistent section separators 2016-02-15 18:30:24 +00:00