object_implementation.f90 Source File


This file depends on

sourcefile~~object_implementation.f90~~EfferentGraph sourcefile~object_implementation.f90 object_implementation.f90 sourcefile~object_interface.f90 object_interface.f90 sourcefile~object_implementation.f90->sourcefile~object_interface.f90

Contents


Source Code

!
!     (c) 2019-2020 Guide Star Engineering, LLC
!     This Software was developed for the US Nuclear Regulatory Commission (US NRC) under contract
!     "Multi-Dimensional Physics Implementation into Fuel Analysis under Steady-state and Transients (FAST)",
!     contract # NRC-HQ-60-17-C-0007
!
submodule(object_interface) object_implementation
  implicit none

contains

    module procedure mark_as_defined
      this%defined=.true.
    end procedure

    module procedure user_defined
      is_defined = this%defined
    end procedure

end submodule