Last active
September 27, 2015 00:17
-
-
Save raholland79/1181138 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type TCarrier411 = class(TObject) | |
private | |
fMCNumber: String; // MC # from DRD | |
fSSUID: String; // Session id from c411 | |
public | |
constructor Create(AMC: String); | |
property MCNumber: String | |
read fMCNumber; | |
property SSUID: String | |
read fSSUID write fSSUID; | |
function Login(AUsername: String; APassword: String; UUIDDate: Tdate): String; | |
function GetStatus: Boolean; | |
function GetCompany: GetCompanyMap; | |
function StartMonitor: Boolean; | |
function StopMonitor: Boolean; | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment