andrewfromcali / mcinsight

gui version of memcached for development

This URL has Read+Write access

Gerard Gualberto (author)
Thu Jul 23 16:55:31 -0700 2009
andrewfromcali (committer)
Thu Jul 23 17:45:04 -0700 2009
mcinsight / LogInfo.h
100644 23 lines (17 sloc) 0.334 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// LogInfo.h
// mcinsight
//
// Created by aa on 7/13/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface LogInfo : NSObject {
  long sid;
  NSString *data;
  BOOL direction;
}
 
@property (nonatomic, retain) NSString *data;
@property long sid;
@property BOOL direction;
 
@end