Home | History | Annotate | Download | only in OCMock
      1 //---------------------------------------------------------------------------------------
      2 //  $Id$
      3 //  Copyright (c) 2005-2008 by Mulle Kybernetik. See License file for details.
      4 //---------------------------------------------------------------------------------------
      5 
      6 #import <OCMock/OCMockObject.h>
      7 
      8 @interface OCProtocolMockObject : OCMockObject
      9 {
     10 	Protocol	*mockedProtocol;
     11 }
     12 
     13 - (id)initWithProtocol:(Protocol *)aProtocol;
     14 
     15 @end
     16 
     17