BBGMultiAccountManager
 All Classes Files Functions Variables Enumerator Properties Defines
GMultiAccountManager/GMultiAccountManager/Manager/BBAccount.h
Go to the documentation of this file.
00001 //
00002 //  BBAccount.h
00003 //  GMultiAccountManager
00004 //
00005 //  Created by Giuseppe Basile on 05/05/12.
00006 //  Copyright (c) 2012 Archy. All rights reserved.
00007 //
00008 
00009 #import <Foundation/Foundation.h>
00010 
00011 @class GTMOAuth2Authentication;
00012 
00016 @protocol BBAccount
00017  <NSObject, NSCoding>
00018         
00022         @property (retain, nonatomic)  GTMOAuth2Authentication* authToken;
00023         
00027         @property (copy, nonatomic) NSString *username;
00028         
00032         @property (nonatomic, getter=isPrincipal) BOOL principal
00033 ;
00034 @end
00035 
00036 @interface BBAccount : NSObject <BBAccount>
00037 
00038 @end