mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 03:37:40 +00:00
26 lines
463 B
Objective-C
26 lines
463 B
Objective-C
//
|
|
// ParseNetDebug.h
|
|
// GetHip
|
|
//
|
|
// Created by Okechi on 1/6/16.
|
|
// Copyright (c) 2016 Kroleo. All rights reserved.
|
|
//
|
|
|
|
#ifndef GetHip_ParseNetDebug_h
|
|
#define GetHip_ParseNetDebug_h
|
|
#import <Foundation/Foundation.h>
|
|
#import <Parse/Parse.h>
|
|
|
|
@interface ParseNetDebug : NSObject
|
|
|
|
+ (void)receiveWillSendURLRequestNotification:(NSNotification *) notification;
|
|
|
|
|
|
+ (void)receiveDidReceiveURLResponseNotification:(NSNotification *) notification;
|
|
|
|
|
|
|
|
@end
|
|
|
|
#endif
|