repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
jacobussystems/IoTJackAC1
src/Connection.h
/* Connection.h By <NAME> Jacobus Systems, Brighton & Hove, UK http://www.jacobus.co.uk Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK Permission is hereby granted, free of charge, to any person obta...
jacobussystems/IoTJackAC1
src/Int8List.h
/* Int8List.h By <NAME> Jacobus Systems, Brighton & Hove, UK http://www.jacobus.co.uk Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK Permission is hereby granted, free of charge, to any person obtain...
jacobussystems/IoTJackAC1
src/Displayer.h
<reponame>jacobussystems/IoTJackAC1 /* Displayer.h By <NAME> Jacobus Systems, Brighton & Hove, UK http://www.jacobus.co.uk Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK Permission is hereby granted,...
jacobussystems/IoTJackAC1
src/DetectBoard.h
/* DetectBoard.h By <NAME> Jacobus Systems, Brighton & Hove, UK http://www.jacobus.co.uk Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK Permission is hereby granted, free of charge, to any person obt...
jacobussystems/IoTJackAC1
src/Tests.h
<reponame>jacobussystems/IoTJackAC1<gh_stars>0 /* Tests.h By <NAME> Jacobus Systems, Brighton & Hove, UK http://www.jacobus.co.uk Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK Permission is hereby g...
petus/ESP32_SCD41_CozIR-LP_SHT40_ePaper-home-monitor
OpenSansSB_14px.h
// Created by http://oleddisplay.squix.ch/ Consider a donation // In case of problems make sure that you are using the font file with the correct version! const uint8_t Open_Sans_SemiBold_14Bitmaps[] PROGMEM = { // Bitmap Data: 0x00, // ' ' 0xDB,0x6D,0xB0,0xD8, // '!' 0x94,0xA5,0x20, // '"' 0x1A,0x04,0x81...
petus/ESP32_SCD41_CozIR-LP_SHT40_ePaper-home-monitor
OpenSansSB_24px.h
// Created by http://oleddisplay.squix.ch/ Consider a donation // In case of problems make sure that you are using the font file with the correct version! const uint8_t Open_Sans_SemiBold_24Bitmaps[] PROGMEM = { // Bitmap Data: 0x00, // ' ' 0xEE,0xEE,0xEE,0xEE,0xEE,0xEC,0x0E,0xEE,0xE0, // '!' 0x66,0x33,0x19...
petus/ESP32_SCD41_CozIR-LP_SHT40_ePaper-home-monitor
OpenSansSB_12px.h
<gh_stars>0 // Created by http://oleddisplay.squix.ch/ Consider a donation // In case of problems make sure that you are using the font file with the correct version! const uint8_t Open_Sans_SemiBold_12Bitmaps[] PROGMEM = { // Bitmap Data: 0x00, // ' ' 0xAA,0xA2,0x80, // '!' 0xAA,0xA0, // '"' 0x12,0x0A,0x...
petus/ESP32_SCD41_CozIR-LP_SHT40_ePaper-home-monitor
OpenSansSB_16px.h
// Created by http://oleddisplay.squix.ch/ Consider a donation // In case of problems make sure that you are using the font file with the correct version! const uint8_t Open_Sans_SemiBold_16Bitmaps[] PROGMEM = { // Bitmap Data: 0x00, // ' ' 0xDB,0x6D,0xB6,0x03,0x60, // '!' 0xDB,0x6D,0xB6, // '"' 0x09,0x03...
supermanbirdy/supermanbirdy.github.io
node_modules/iltorb/src/_iltorb.h
/* empty file for main module */
supermanbirdy/supermanbirdy.github.io
node_modules/iltorb/src/_memcpy.h
<reponame>supermanbirdy/supermanbirdy.github.io /* force mempcy to be from earlier compatible system */ /* see https://github.com/MayhemYDG/iltorb/issues/35 */ /* https://github.com/MayhemYDG/iltorb/issues/39 */ /* https://github.com/MayhemYDG/iltorb/issues/40 */ #if defined(__linux__) && defined(__GLIBC__) && ...
Mason-Edwards/C-File-Transfer
server.c
/* Server demo */ #include <stdio.h> #include <stdlib.h> #include <sys/socket.h> #include <sys/types.h> #include <netdb.h> #include <netinet/in.h> #include <string.h> #include <pthread.h> #include <stdbool.h> #include <unistd.h> #include <fcntl.h> #include <errno.h> #include "socketinfo.h" #include "utils.h" // Funct...
Mason-Edwards/C-File-Transfer
utils.h
<filename>utils.h<gh_stars>0 #pragma once #ifndef _CW2_UTILS #define _CW2_UTILS void sendFileToSocketFd(int fd, char* filename); void sendEncryFileToSocketFd(int fd, char* filename); void downloadEncryFileFromSocketFd(int fd, char* filename); void downloadFileFromSocketFd(int fd, char* filename); void setBlockingFd(...
Mason-Edwards/C-File-Transfer
socketinfo.h
<filename>socketinfo.h #pragma once #define MSGSIZE 256 #define PORT 9002 #define BACKLOG 50 #define MAXUSERS 100 #define DATASIZE 1024 #define FILE_NAME_SIZE 20
Mason-Edwards/C-File-Transfer
client.c
/* Client demo */ #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <sys/socket.h> #include <sys/types.h> #include <netdb.h> #include <netinet/in.h> #include <string.h> #include <signal.h> #include <unistd.h> #include <sys/stat.h> #include "socketinfo.h" #include "utils.h" void uploadFile(int network...
Mason-Edwards/C-File-Transfer
utils.c
<filename>utils.c<gh_stars>0 #include <stdio.h> #include <sys/socket.h> #include <errno.h> #include <fcntl.h> #include <string.h> #include <unistd.h> #include "utils.h" #include "socketinfo.h" void sendFileToSocketFd(int fd, char* filename) { FILE* fp = fopen(filename, "r"); printf("-----Uploading-----\n"); cha...
edisonslightbulbs/yolo-cpp
include/utility.h
#ifndef UTILITY_H #define UTILITY_H #include <unistd.h> #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-result" std::string pwd() { char buff[FILENAME_MAX]; getcwd(buff, FILENAME_MAX); std::string workingDir(buff); return workingDir; } #pragma GCC diagnostic pop #endif /* UTILI...
craflin/invtun
Src/Server/UplinkHandler.h
#pragma once #include <nstd/Socket/Server.h> #include <nstd/Buffer.h> #include "Protocol.h" #include "Callback.h" class ServerHandler; class UplinkHandler : public Callback { public: UplinkHandler(ServerHandler& serverHandler, Server& server); ~UplinkHandler(); bool accept(Server::Handle& listenerHandle); ...
craflin/invtun
Src/Client/DownlinkHandler.h
#pragma once #include <nstd/Socket/Server.h> #include <nstd/Buffer.h> #include "Protocol.h" #include "Callback.h" class ClientHandler; class DownlinkHandler : public Callback { public: DownlinkHandler(ClientHandler& clientHandler, Server& server); ~DownlinkHandler(); bool connect(uint32 addr, uint16 port); ...
craflin/invtun
Src/Server/EntryHandler.h
<reponame>craflin/invtun #pragma once #include <nstd/Socket/Server.h> #include "Callback.h" class ServerHandler; class EntryHandler : public Callback { public: EntryHandler(ServerHandler& serverHandler, Server& server, uint32 connectionId); ~EntryHandler(); uint32 getConnectionId() const {return connectionI...
craflin/invtun
Src/Client/EndpointHandler.h
<filename>Src/Client/EndpointHandler.h #pragma once #include <nstd/Buffer.h> #include <nstd/Socket/Server.h> #include "Callback.h" class ClientHandler; class EndpointHandler : public Callback { public: EndpointHandler(ClientHandler& clientHandler, Server& server, uint32 connectionId); ~EndpointHandler(); ui...
craflin/invtun
Src/Protocol.h
#pragma once #include <nstd/String.h> class Protocol { public: enum MessageType { error, auth, authResponse, connect, disconnect, data, suspend, resume, }; #pragma pack(push, 1) struct Header { uint32 size:24; uint8 messageType; // MessageType }; struct AuthMes...
craflin/invtun
Src/Client/ClientHandler.h
#pragma once #include <nstd/Socket/Server.h> #include <nstd/HashMap.h> #include <nstd/String.h> #include "Callback.h" #define SEND_BUFFER_SIZE (256 * 1024) #define RECV_BUFFER_SIZE (256 * 1024) class DownlinkHandler; class EndpointHandler; class ClientHandler : public Callback { public: ClientHandler(Server& se...
craflin/invtun
Src/Server/ServerHandler.h
<reponame>craflin/invtun #pragma once #include <nstd/HashMap.h> #include <nstd/String.h> #include <nstd/Socket/Server.h> #include "Callback.h" #define SEND_BUFFER_SIZE (256 * 1024) #define RECV_BUFFER_SIZE (256 * 1024) class EntryHandler; class UplinkHandler; class ServerHandler : public Callback { public: Serv...
craflin/invtun
Src/Callback.h
<filename>Src/Callback.h #pragma once #include <nstd/Socket/Server.h> class Callback { public: virtual void openedClient() {} virtual void readClient() {} virtual void writeClient() {} virtual void closedClient() {} virtual void abolishedClient() {} virtual void acceptClient(Server::Handle& handle) {} ...
uxyheaven/XYQuick
Example/XYQuick/Model/Test2Model.h
<reponame>uxyheaven/XYQuick // // Test2Model.h // JoinShow // // Created by Heaven on 13-12-12. // Copyright (c) 2013年 Heaven. All rights reserved. // #import "EntityBaseModel.h" @interface Test2Model : EntityBaseModel @end
uxyheaven/XYQuick
Example/XYQuick/Controller/UISignalVC.h
// // UISignalVC.h // JoinShow // // Created by Heaven on 14-5-20. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" #import "XYUISignal.h" @interface UISignal1 : UIView AS_SIGNAL( click1 ) @end @interface UISignal2 : UIView AS_SIGNAL( click2 ) @pr...
uxyheaven/XYQuick
Pod/Classes/ui/extension/UIViewController+XY.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Example/XYQuick/XYViewController.h
// // XYViewController.h // XYQuick // // Created by xingyao095 on 04/22/2016. // Copyright (c) 2016 xingyao095. All rights reserved. // @import UIKit; @interface XYViewController : UIViewController @end
uxyheaven/XYQuick
Example/XYQuick/Laboratory/module/XYModuleLifecycle.h
// // XYModuleLifecycle.h // XYQuick // // Created by heaven on 2016/12/20. // Copyright © 2016年 xingyao095. All rights reserved. // #import <UIKit/UIKit.h> @interface XYModuleLifecycle : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end
uxyheaven/XYQuick
Pod/Classes/ui/modules/XYKeyboardHelper.h
<reponame>uxyheaven/XYQuick<gh_stars>100-1000 // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright...
uxyheaven/XYQuick
Example/XYQuick/Controller/DemoTableViewController.h
<filename>Example/XYQuick/Controller/DemoTableViewController.h // // DomeTableViewController.h // JoinShow // // Created by Heaven on 13-8-23. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> @interface DemoTableViewController : UITableViewController @property (nonatomic, strong) NS...
uxyheaven/XYQuick
Pod/Classes/core/modules/XYSystemInfo.h
<gh_stars>100-1000 // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // // Copyright (C) Heaven. // // https...
uxyheaven/XYQuick
Pod/Classes/event/modules/XYNotification.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Example/XYQuick/Controller/BlackMagicVC.h
// // BlackMagicVC.h // JoinShow // // Created by Heaven on 14/11/14. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" @interface BlackMagicVC : UITableViewController<ViewControllerDemo> @property (nonatomic, strong) NSArray *items; @end
uxyheaven/XYQuick
Example/XYQuick/Controller/DatabaseVC.h
// // DatabaseVC.h // JoinShow // // Created by Heaven on 13-9-16. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" @interface DatabaseVC : UIViewController<ViewControllerDemo> @end
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYMaterial.h
// // XYMaterial.h // JoinShow // // Created by Heaven on 14-1-17. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @interface XYMaterial : NSObject @end
uxyheaven/XYQuick
Pod/Classes/ui/modules/XYBaseViewController.h
<filename>Pod/Classes/ui/modules/XYBaseViewController.h // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // ...
uxyheaven/XYQuick
Pod/Classes/core/extension/NSString+XY.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYEvent.h
// // XYEvent.h // JoinShow // // Created by XingYao on 15/7/1. // Copyright (c) 2015年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @interface XYEventCenter : NSObject + (instancetype)defaultCenter; - (void)addTarget:(id)target action:(SEL)action forEvent:(NSString *)event; - (void)removeTa...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYUISignal.h
// // XYUISignal.h // JoinShow // // Created by Heaven on 14-5-19. // Copyright (c) 2014年 Heaven. All rights reserved. // Copy from bee Framework #import "XYQuick_Predefine.h" #define __XY_UISIGNAL_CALLPATH__ 1 // 职责链模式(chain of responsibility) #pragma mark - #define #undef AS_SIGNAL #define AS_SIGNAL( _...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYBaseModel.h
<gh_stars>100-1000 // // XYBaseModel.h // JoinShow // // Created by Heaven on 14-4-25. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #import "XYBaseDataSource.h" @interface XYBaseModel : NSObject <XYDataSource> // 读取数据 - (void)loadDataWith:(XYBaseDataSource *)dataGet; ...
uxyheaven/XYQuick
Pod/Classes/core/extension/NSDate+XY.h
<reponame>uxyheaven/XYQuick<filename>Pod/Classes/core/extension/NSDate+XY.h // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| ...
uxyheaven/XYQuick
Example/XYQuick/Controller/ImageVC.h
<reponame>uxyheaven/XYQuick // // ImageVC.h // JoinShow // // Created by Heaven on 13-10-25. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" @interface ImageVC : UITableViewController<ViewControllerDemo> @property (nonatomic, strong) UIImage *originIm...
uxyheaven/XYQuick
Pod/Classes/ui/extension/UIImage+XY.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYBaseDao.h
<gh_stars>100-1000 // // XYBaseDao.h // JoinShow // // Created by Heaven on 14-9-10. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #define XYBaseDao_error_code 123123 #define XYBaseDao_load_maxCount 1000 @protocol XYBaseDaoEntityProtocol <NSObject> @required // 返回表名 + (...
uxyheaven/XYQuick
Example/XYQuick/Controller/TestVC2.h
// // TestVC2.h // JoinShow // // Created by Heaven on 14-4-1. // Copyright (c) 2014年 Heaven. All rights reserved. // #pragma -mark todo #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" @interface TestVC2 : UITableViewController<ViewControllerDemo> @property (nonatomic, strong) NSArray *items; @end
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYObjectCache.h
<gh_stars>100-1000 // // XYObjectCache.h // JoinShow // // Created by Heaven on 14-1-21. // Copyright (c) 2014年 Heaven. All rights reserved. // // Copy from bee Framework #import "XYQuick_Predefine.h" @class XYMemoryCache; @class XYFileCache; @interface XYObjectCache : NSObject uxy_as_singleton @property (nona...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/IndicatorHelper.h
<gh_stars>100-1000 // // IndicatorHelper.h // JoinShow // // Created by Heaven on 14-6-11. // Copyright (c) 2014年 Heaven. All rights reserved. // // 指示器帮助类 #import "XYQuick_Predefine.h" // MBProgressHUD指示器 #import "MBProgressHUD.h" @interface IndicatorHelper : NSObject uxy_as_singleton // 返回一个indicatorView + (id...
uxyheaven/XYQuick
Example/XYQuick/Controller/SignalVC.h
<gh_stars>100-1000 // // UISignalVC.h // JoinShow // // Created by Heaven on 14-5-20. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "XYQuick.h" #import "XYSignal.h" #import "ViewControllerDemo.h" uxy_as_def_signal( signal_name1 ) // 信号1 @interface Signal1 : UIView @e...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYRepository.h
// // XYRepository.h // // Created by heaven on 15/4/29. // Copyright (c) 2015年 heaven. All rights reserved. // #import "XYQuick_Predefine.h" #import <Foundation/Foundation.h> @class XYRepositoryInterface; @class XYRepositoryEvent; @protocol XYRepositoryProtocol <NSObject> - (void)XYRepositoryWithDataIdentifier:(...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYBaseDataSource.h
// // XYBaseDataSource.h // JoinShow // // Created by Heaven on 14/11/4. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #define ON_DATA_SUCCEED_1_( __DataSource, __data ) \ - (void)dataSource:(id)__DataSource didGetData:(id)__data; #define ON_DATA_FAILED_1_( __Da...
uxyheaven/XYQuick
Example/XYQuick/View/Test2View.h
// // Test2View.h // JoinShow // // Created by Heaven on 13-7-31. // Copyright (c) 2013年 Heaven. All rights reserved. // #import "TestView.h" @interface Test2View : TestView @end
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYApplicationWorkspace.h
// // XYApplicationWorkspace.h // JoinShow // // Created by Heaven on 15/8/5. // Copyright (c) 2015年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @interface XYApplicationWorkspace : NSObject - (NSArray *)allApplications; @end
uxyheaven/XYQuick
Example/XYQuick/Model/AopTestM.h
// // AopTestM.h // JoinShow // // Created by Heaven on 14/10/28. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @interface AopTestM : NSObject - (NSString *)sumA:(int)a andB:(int)b; @end
uxyheaven/XYQuick
Pod/Classes/core/modules/XYRuntime.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Example/XYQuick/Model/CarEntity.h
// // CarEntity.h // JoinShow // // Created by Heaven on 14-9-12. // Copyright (c) 2014年 Heaven. All rights reserved. // // 测试XYBaseDao用 #import <Foundation/Foundation.h> #import "XYBaseDao.h" @interface CarEntity : NSObject @property (nonatomic, copy) NSString *name; @property (nonatomic, copy) NSString *brand;...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYClassLoader.h
// // XYClassLoader.h // JoinShow // // Created by heaven on 15/4/22. // Copyright (c) 2015年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @interface NSObject(XYClassLoader) + (void)uxy_classAutoLoad; @end #pragma mark - @interface XYClassLoader : NSObject + (instancetype)classLoader; - (v...
uxyheaven/XYQuick
Example/XYQuick/Controller/TestVC.h
// // TestVC.h // JoinShow // // Created by Heaven on 13-9-1. // Copyright (c) 2013年 Heaven. All rights reserved. // // 此页面 测试用 #import "ViewControllerDemo.h" @class XYObserve; @class TestView; @class GirlEntity; @interface TestVC : UIViewController<ViewControllerDemo> { int offset; } @property (nonatomic, s...
uxyheaven/XYQuick
Pod/Classes/core/modules/XYSandbox.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/module/XYModuleManager.h
// // XYModuleManager.h // XYQuick // // Created by heaven on 2016/12/20. // Copyright © 2016年 xingyao095. All rights reserved. // #import <Foundation/Foundation.h> @interface XYModuleManager : NSObject + (instancetype)sharedInstance; - (void)hookAppDelegate:(id <UIApplicationDelegate>)appDelegate; - (void)add...
uxyheaven/XYQuick
Example/XYQuick/Controller/KeyboardVC.h
// // KeyboardVC.h // JoinShow // // Created by Heaven on 13-10-29. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" @interface KeyboardVC : UIViewController <UITextFieldDelegate, UITextViewDelegate, ViewControllerDemo>{ NSInteger selectedTextFieldT...
uxyheaven/XYQuick
Example/XYQuick/Model/JsonTestEntity.h
<gh_stars>100-1000 // // JsonTestEntity.h // JoinShow // // Created by Heaven on 14-4-24. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @interface JsonTestEntity : NSObject @property (nonatomic, strong) NSArray *array; @property (nonatomic, strong) NSDictionary *dic; @en...
uxyheaven/XYQuick
Pod/Classes/ui/modules/XYTabBar.h
<gh_stars>100-1000 // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYAppController.h
// // XYAppController.h // JoinShow // // Created by heaven on 15/4/22. // Copyright (c) 2015年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #import "XYQuick_Predefine.h" // AppDelegate流程控制类 @interface XYAppController : NSObject uxy_as_singleton // 待补全 // 单例有问题 #pragma mark- rewrite下列方法实现控制流程...
uxyheaven/XYQuick
Example/XYQuick/Model/GirlEntity.h
<reponame>uxyheaven/XYQuick // // GirlEntity.h // JoinShow // // Created by Heaven on 14-1-13. // Copyright (c) 2014年 Heaven. All rights reserved. // // 测试runtime 时候用的 #import <UIKit/UIKit.h> @interface GirlEntity : NSObject @property (nonatomic, copy) NSString *name; - (void)talk; @end
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYBaseView.h
// // XYBaseView.h // JoinShow // // Created by Heaven on 14-4-25. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> @interface XYBaseView : UIView #pragma mark- as #pragma mark- model #pragma mark- view #pragma mark- api @end
uxyheaven/XYQuick
Example/XYQuick/Model/ConfigManager.h
// // ConfigManager.h // JoinShow // // Created by Heaven on 13-9-10. // Copyright (c) 2013年 Heaven. All rights reserved. // #import "XYQuick.h" @interface ConfigManager : NSObject uxy_as_singleton @property (nonatomic, strong) NSString *StrTest; @end
uxyheaven/XYQuick
Example/XYQuick/Modules/ModuleA.h
<reponame>uxyheaven/XYQuick // // ModuleA.h // XYQuick // // Created by heaven on 2016/12/21. // Copyright © 2016年 xingyao095. All rights reserved. // #import "XYModuleLifecycle.h" @interface ModuleA : XYModuleLifecycle + (instancetype)sharedInstance; @end
uxyheaven/XYQuick
Pod/Classes/core/XYQuick_Core.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // // Copyright (C) Heaven. // // https://github.com/uxyhe...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/module/XYInterfaceManager.h
// // XYInterfaceManager.h // XYQuick // // Created by heaven on 2016/12/22. // Copyright © 2016年 xingyao095. All rights reserved. // #import <Foundation/Foundation.h> @interface XYInterfaceManager : NSObject /* * sel : create * sel : retrieve * sel : update * sel : delete * completion : {ret : 1, error : ...
uxyheaven/XYQuick
Example/XYQuick/View/TestView.h
<reponame>uxyheaven/XYQuick<filename>Example/XYQuick/View/TestView.h // // TestView.h // JoinShow // // Created by Heaven on 13-7-31. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> @interface TestView : UIView @property (nonatomic, strong) UILabel *label1; @property (nonatomic, st...
uxyheaven/XYQuick
Pod/Classes/ui/modules/XYAnimate.h
<filename>Pod/Classes/ui/modules/XYAnimate.h // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright ...
uxyheaven/XYQuick
Pod/Classes/event/modules/XYKVO.h
<reponame>uxyheaven/XYQuick // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // //...
uxyheaven/XYQuick
Example/XYQuick/Controller/JSONVC.h
<filename>Example/XYQuick/Controller/JSONVC.h<gh_stars>100-1000 // // JSONVC.h // JoinShow // // Created by Heaven on 14-9-9. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" @interface JSONVC : UITableViewController<ViewControllerDemo> @end
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYMenuItem.h
<reponame>uxyheaven/XYQuick // // XYMenuItem.h // JoinShow // // Created by heaven on 14/12/11. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @protocol XYMenuItem <NSObject> @optional @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *i...
uxyheaven/XYQuick
Example/XYQuick/Controller/AnimationVC2.h
// // AnimationVC2.h // JoinShow // // Created by Heaven on 13-11-19. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #import "ViewControllerDemo.h" @interface AnimationVC2 : UIViewController<ViewControllerDemo> @end
uxyheaven/XYQuick
Example/XYQuick/Model/EntityBaseModel.h
<filename>Example/XYQuick/Model/EntityBaseModel.h // // EntityModel.h // JoinShow // // Created by Heaven on 13-12-10. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #import "XYQuick.h" @class RequestHelper; @class LKDBHelper; @protocol EntityModelDelegate; @interface En...
uxyheaven/XYQuick
Pod/Classes/core/extension/NSObject+XY.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Pod/Classes/core/modules/XYCommonDefine.h
<reponame>uxyheaven/XYQuick // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // //...
uxyheaven/XYQuick
Pod/Classes/predefine/XYQuick_Predefine.h
<filename>Pod/Classes/predefine/XYQuick_Predefine.h // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // // ...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/LKDBHelperExtension.h
// // LKDBHelperExtension.h // JoinShow // // Created by Heaven on 13-10-31. // Copyright (c) 2013年 Heaven. All rights reserved. // #define XY_LKDBHelper_loadCount 20 #import "LKDBHelper.h" @interface NSObject(XY_LKDBHelper) - (void)loadFromDB; + (NSString *)primaryKeyAndDESC; @end @interface NSArray(XY_LKDB...
uxyheaven/XYQuick
Pod/Classes/ui/modules/XYTabBarController.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // // Copyright (C) Heaven. // // https://github.com/uxyhe...
uxyheaven/XYQuick
Pod/Classes/core/modules/XYJSON.h
<gh_stars>100-1000 // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://...
uxyheaven/XYQuick
Pod/Classes/ui/modules/XYViewLayout.h
<filename>Pod/Classes/ui/modules/XYViewLayout.h // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyrig...
uxyheaven/XYQuick
Example/XYQuick/Controller/ViewControllerDemo.h
// // ViewControllerDemo.h // JoinShow // // Created by heaven on 15/7/7. // Copyright (c) 2015年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #import "XYQuick_Predefine.h" @protocol ViewControllerDemo <NSObject> + (NSString *)title; @end #define ViewControllerDemoTitle( __title ) \ ...
uxyheaven/XYQuick
Pod/Classes/core/modules/debug/XYDebugToy.h
<gh_stars>100-1000 // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://...
uxyheaven/XYQuick
Pod/Classes/ui/extension/UIControl+XY.h
<reponame>uxyheaven/XYQuick<gh_stars>100-1000 // // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright...
uxyheaven/XYQuick
Example/XYQuick/Model/Associated.h
// // Associated.h // JoinShow // // Created by Heaven on 15/8/28. // Copyright (c) 2015年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #import "XYQuick.h" @interface Associated : NSObject @end @interface Associated (test) @uxy_property_basicDataType(int, age); @uxy_property_basicDataType(N...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYChainMethod.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Pod/Classes/ui/XYQuick_UI.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Pod/Classes/core/modules/debug/XYUnitTest.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Example/XYQuick/Model/AutoCodingEntity.h
// // AutoCodingEntity.h // JoinShow // // Created by Heaven on 14/10/31. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @class AutoCodingEntityOther; @interface AutoCodingEntityList : NSObject @property (nonatomic, strong) NSMutableArray *array; @end @interface Auto...
uxyheaven/XYQuick
Example/XYQuick/Model/RubyChinaNodeEntity.h
// // RubyChinaNodeEntity.h // JoinShow // // Created by Heaven on 13-10-31. // Copyright (c) 2013年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> #import "XYQuick.h" @protocol RubyChinaNodeEntity <NSObject> @end @interface RubyChinaNodeEntity : NSObject <XYJSONAutoBinding> @property (nonatom...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/XYAppModuleProtocol.h
<reponame>uxyheaven/XYQuick // // XYAppModuleProtocol.h // JoinShow // // Created by heaven on 14/12/19. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <Foundation/Foundation.h> @protocol XYAppModuleProtocol <NSObject> @property (nonatomic, copy, readonly) NSString *name; // 名字 @property (n...
uxyheaven/XYQuick
Example/XYQuick/Laboratory/module/XYWidget.h
<reponame>uxyheaven/XYQuick // // XYWidget.h // XYQuick // // Created by heaven on 2016/12/22. // Copyright © 2016年 xingyao095. All rights reserved. // #import <Foundation/Foundation.h> @interface XYWidget : NSObject @property (nonatomic, strong, readonly) NSDictionary *data; @property (nonatomic, strong, readon...
uxyheaven/XYQuick
Example/XYQuick/Controller/DemoViewController.h
// // DemoViewController.h // JoinShow // // Created by Heaven on 14-4-2. // Copyright (c) 2014年 Heaven. All rights reserved. // #import <UIKit/UIKit.h> #define DemoViewController_sel_methodBlock @selector(funny:) #define DemoViewController_sel_methodBlock2 @selector(funny2:) typedef void(^DemoViewControllerExec...
uxyheaven/XYQuick
Pod/Classes/event/modules/XYSignal.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Pod/Classes/core/modules/XYCommon.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...
uxyheaven/XYQuick
Pod/Classes/event/modules/XYMulticastDelegate.h
// // __ __ ____ _ _ // \ \/ / /\_/\ /___ \ _ _ (_) ___ | | __ // \ / \_ _/ // / / | | | | | | / __| | |/ / // / \ / \ / \_/ / | |_| | | | | (__ | < // /_/\_\ \_/ \___,_\ \__,_| |_| \___| |_|\_\ // // Copyright (C) Heaven. // // https://github.com/uxyheave...