/* Project: Cartotheque Copyright (C) 2005 Stefan Urbanek Author : Stefan Urbanek Created: 2005-01-27 License: GNU LGPL 2.1 */ #include @class CardView; @class Card; @interface CardWindowController : NSWindowController { CardView *cardView; Card *card; } - (void)setCard:(Card *)aCard; - (Card *)card; - (void)commitEditing; - (void) goToPreviousCard: (id)sender; - (void) openCards: (id)sender; - (void) goToNextCard: (id)sender; @end