Move Defaults.hs to 'Class' subsystem

This commit is contained in:
hasufell 2014-10-07 19:18:16 +02:00
parent b7d752ae20
commit 73984b796d
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
4 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ executable CG2
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: Defaults Diagram Gtk Parser.Meshparser Parser.Core OS.FileExt LinearAlgebra.Vector
other-modules: Diagram Gtk Class.Defaults Parser.Meshparser Parser.Core OS.FileExt LinearAlgebra.Vector
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:

View File

@ -1,6 +1,6 @@
{-# OPTIONS_HADDOCK ignore-exports #-}
module Defaults where
module Class.Defaults where
-- |Used to create a common interface for default settings of data types.

View File

@ -9,7 +9,7 @@ module Diagram (t,
diagS,
whiteRect) where
import Defaults
import Class.Defaults
import Diagrams.Prelude
import Diagrams.Backend.Cairo
import LinearAlgebra.Vector

2
Gtk.hs
View File

@ -3,7 +3,7 @@
module Gtk (makeGUI) where
import Control.Monad.IO.Class
import Defaults
import Class.Defaults
import Diagram
import Diagrams.Prelude
import Diagrams.Backend.Cairo