1/*
2 * Copyright (c) 2006-2008, The RubyCocoa Project.
3 * Copyright (c) 2001-2006, FUJIMOTO Hisakuni.
4 * All Rights Reserved.
5 *
6 * RubyCocoa is free software, covered under either the Ruby's license or the
7 * LGPL. See the COPYRIGHT file for more information.
8 */
9
10#import <Foundation/Foundation.h>
11#import "ocdata_conv.h"
12
13@interface RBCacheTestProbe : NSObject
14@end
15
16@implementation RBCacheTestProbe
17
18+ (BOOL)findInOcidToRbobjCache:(id)ocid
19{
20  return ocid_to_rbobj_cache_only(ocid) != Qnil;
21}
22
23@end
24