/* Project: Cartotheque Copyright (C) 2005 Stefan Urbanek Author : Stefan Urbanek Created: 2005-01-27 License: GNU LGPL 2.1 */ #import @class Cartotheque; @class Card; @interface CartothequeDocument:NSDocument { Cartotheque *cartotheque; } - (void)createCard; - (void)commitEdits; - (void)deleteCards:(NSArray *)cards; - (Cartotheque *)cartotheque; - (void)showMainWindow; - (void)openCard:(Card *)aCard; @end