cmDebuggerSourceBreakpoint.cxx 406 B

1234567891011121314
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmDebuggerSourceBreakpoint.h"
  4. namespace cmDebugger {
  5. cmDebuggerSourceBreakpoint::cmDebuggerSourceBreakpoint(int64_t id,
  6. int64_t line)
  7. : Id(id)
  8. , Line(line)
  9. {
  10. }
  11. } // namespace cmDebugger