Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/GDXFile.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Copyright (c) 2026 Martin Kirk Bonde, James Daniel Foster and contributors
# Copyright (c) 2020-2023 GAMS Software GmbH
#
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

# High-level GDX file API for GDXInterface.jl

# =============================================================================
Expand Down
6 changes: 6 additions & 0 deletions src/GDXInterface.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Copyright (c) 2026 Martin Kirk Bonde, James Daniel Foster and contributors
# Copyright (c) 2020-2023 GAMS Software GmbH
#
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

module GDXInterface

import DataAPI
Expand Down
6 changes: 6 additions & 0 deletions src/gdx_c_api.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Copyright (c) 2026 Martin Kirk Bonde, James Daniel Foster and contributors
# Copyright (c) 2020-2023 GAMS Software GmbH
#
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

# GDX library bindings (for libgdx)
# Low-level C API wrappers for reading and writing GDX files

Expand Down
6 changes: 6 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Copyright (c) 2026 Martin Kirk Bonde, James Daniel Foster and contributors
# Copyright (c) 2020-2023 GAMS Software GmbH
#
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

import Test: @testset, @test, @test_throws
import Tables
import DataFrames: DataFrame, names, metadata!
Expand Down
6 changes: 6 additions & 0 deletions test/test_gdxfile.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Copyright (c) 2026 Martin Kirk Bonde, James Daniel Foster and contributors
# Copyright (c) 2020-2023 GAMS Software GmbH
#
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

# Tests for GDXFile API

# For reference: script to create test file "gams_gdx_test.gdx" using GAMS
Expand Down
Loading