Commit cf075a72 authored by Tomáš Jakubec's avatar Tomáš Jakubec
Browse files

before refactor

parent 357b8b66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.10.0, 2019-09-27T11:56:39. -->
<!-- Written by QtCreator 4.10.0, 2019-09-27T19:25:22. -->
<qtcreator>
 <data>
  <variable>EnvironmentId</variable>
+7 −8
Original line number Diff line number Diff line
@@ -13,30 +13,29 @@
template<typename IndexType>
class MeshElementBase{
    /**
     * @brief Index
     *
     * @brief elementIndex<HR>
     * Index of the element in the mesh or in mesh component
     */
    IndexType ElementIndex;
    IndexType elementIndex;

    /**
     * @brief LocalElementIndex
     * @brief globalElementIndex
     *
     * Global index of element in the mesh component
     */
    //IndexType GobalElementIndex;
    //IndexType gobalElementIndex;
public:

    MeshElementBase(IndexType index = INVALID_INDEX(IndexType)){
        ElementIndex = index;
        elementIndex = index;
    }

    IndexType GetIndex(){
        return ElementIndex;
        return elementIndex;
    }

    void SetIndex(IndexType index){
        ElementIndex = index;
        elementIndex = index;
    }
/*
    IndexType GetGlobalIndex(){