diff --git a/DAOInterface.sol b/DAOInterface.sol index f80b237..4644123 100644 --- a/DAOInterface.sol +++ b/DAOInterface.sol @@ -1,3 +1,27 @@ +/* +This file is part of the DAO. + +The DAO is free software: you can redistribute it and/or modify +it under the terms of the GNU lesser General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +The DAO is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU lesser General Public License for more details. + +You should have received a copy of the GNU lesser General Public License +along with the DAO. If not, see . +*/ + + +/* +Standard smart contract for a DAO interface. That defines functions +which are implemented in DAO.sol +*/ + + import "./TokenCreation.sol"; import "./ManagedAccount.sol"; import "./DAO_Creator.sol"; @@ -318,4 +342,4 @@ contract DAOInterface { event ProposalTallied(uint indexed proposalID, bool result, uint quorum); event NewCurator(address indexed _newCurator); event AllowedRecipientChanged(address indexed _recipient, bool _allowed); -} \ No newline at end of file +} diff --git a/DAO_Creator.sol b/DAO_Creator.sol index 251cc8b..72bc54e 100644 --- a/DAO_Creator.sol +++ b/DAO_Creator.sol @@ -1,3 +1,27 @@ +/* +This file is part of the DAO. + +The DAO is free software: you can redistribute it and/or modify +it under the terms of the GNU lesser General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +The DAO is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU lesser General Public License for more details. + +You should have received a copy of the GNU lesser General Public License +along with the DAO. If not, see . +*/ + + +/* +Standard smart contract for a Creating a new DAO when split happens +to automate organizational governance and decision-making. +*/ + + import "DAO.sol"; contract DAO_Creator { @@ -17,4 +41,4 @@ contract DAO_Creator { msg.sender ); } -} \ No newline at end of file +}