Download this file
26 lines (19 with data), 436 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 | //
// SCAuthToken.h
// SCPlugin
//
// Created by Christopher Pavicich on Thu Jun 10 2004.
// Copyright (c) 2004 Christopher Pavicich. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SCAuthToken : NSObject
{
@private
NSString *username;
NSString *password;
}
- (NSString *) username;
- (void) setUsername:(NSString *)value;
- (NSString *) password;
- (void) setPassword:(NSString *)value;
@end
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.