Skip to content

Instantly share code, notes, and snippets.

@raholland79
Last active September 27, 2015 00:17
Show Gist options
  • Save raholland79/1181138 to your computer and use it in GitHub Desktop.
Save raholland79/1181138 to your computer and use it in GitHub Desktop.
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