BasicTypes -> Types

This commit is contained in:
Simon Michael 2007-07-02 14:54:36 +00:00
parent 4ff7c1c7fb
commit b41e13d23a
11 changed files with 12 additions and 12 deletions

View File

@ -3,7 +3,7 @@ where
import qualified Data.Map as Map import qualified Data.Map as Map
import Utils import Utils
import BasicTypes import Types
import AccountName import AccountName
import Amount import Amount
import Entry import Entry

View File

@ -1,7 +1,7 @@
module AccountName module AccountName
where where
import Utils import Utils
import BasicTypes import Types
-- AccountNames are strings like "assets:cash:petty"; from these we build -- AccountNames are strings like "assets:cash:petty"; from these we build
-- the chart of accounts, which should be a simple hierarchy. -- the chart of accounts, which should be a simple hierarchy.

View File

@ -1,7 +1,7 @@
module Amount module Amount
where where
import Utils import Utils
import BasicTypes import Types
{- {-
a simple amount is a currency, quantity pair: a simple amount is a currency, quantity pair:

View File

@ -2,7 +2,7 @@
module Entry module Entry
where where
import Utils import Utils
import BasicTypes import Types
import Transaction import Transaction

View File

@ -2,7 +2,7 @@
module EntryTransaction module EntryTransaction
where where
import Utils import Utils
import BasicTypes import Types
import Entry import Entry
import Transaction import Transaction
import Amount import Amount

View File

@ -4,7 +4,7 @@ import qualified Data.Map as Map
import Utils import Utils
import AccountName import AccountName
import BasicTypes import Types
import Entry import Entry
import EntryTransaction import EntryTransaction

View File

@ -1,6 +1,6 @@
-- data types & behaviours -- data types & behaviours
module Models ( module Models (
module BasicTypes, module Types,
module Amount, module Amount,
module AccountName, module AccountName,
module Transaction, module Transaction,
@ -13,7 +13,7 @@ module Models (
where where
import qualified Data.Map as Map import qualified Data.Map as Map
import BasicTypes import Types
import Amount import Amount
import AccountName import AccountName
import Transaction import Transaction

View File

@ -1,7 +1,7 @@
module TimeLog module TimeLog
where where
import Utils import Utils
import BasicTypes import Types
import Amount import Amount
import Transaction import Transaction
import Entry import Entry

View File

@ -2,7 +2,7 @@
module Transaction module Transaction
where where
import Utils import Utils
import BasicTypes import Types
import AccountName import AccountName
import Amount import Amount

View File

@ -1,4 +1,4 @@
module BasicTypes module Types
where where
import Utils import Utils

View File

@ -20,7 +20,7 @@ hledger
Transaction Transaction
AccountName AccountName
Amount Amount
BasicTypes Types
Utils Utils
-} -}