repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
hsundar/sort
include/oct/nodeAndRanks.h
<reponame>hsundar/sort<gh_stars>0 /** @file nodeAndRanks.h @brief A small helper class that pairs TreeNode with a list of processors. @author <NAME>, <EMAIL> */ #ifndef _NODE_AND_RANKS_H_ #define _NODE_AND_RANKS_H_ #include <vector> #include "TreeNode.h" namespace ot { /** @brief A small helper class...
hsundar/sort
include/dendro.h
/** @file dendro.h @author <NAME> */ #ifndef __DENDRO_H__ #define __DENDRO_H__ #ifdef __USE_64_BIT_INT__ #define DendroIntL long long #define DendroIntLSpecifier %lld #define DendroUIntLSpecifier %llu #else #define DendroIntL int #define DendroIntLSpecifier %d #define DendroUIntLSpecifier %u #endif #endif
hsundar/sort
include/oct/TreeNode.h
/** * @file TreeNode.h * @author <NAME>, <EMAIL> @author <NAME>, <EMAIL> * **/ #ifndef _TREENODE_H_ #define _TREENODE_H_ #include "octUtils.h" #include "Point.h" #include <iostream> #ifdef __DEBUG__ #ifndef __DEBUG_TN__ #define __DEBUG_TN__ #endif #endif namespace ot { /** @brief A class to manage oct...
hsundar/sort
include/oct/nodeAndValues.h
<filename>include/oct/nodeAndValues.h<gh_stars>0 /** @file nodeAndValues.h @brief A small helper class that pairs TreeNode with an array of values. The class is templated on the length and type of the array. This class has an MPI_Datatype associated with it and it can be communicated between processors. @a...
hsundar/sort
include/colors.h
<gh_stars>10-100 /** @file colors.h @author <NAME>, <EMAIL> @brief A set of colors useful for debugging */ #ifndef COLORS_H_ #define COLORS_H_ #define RED "\e[1;31m" #define BLU "\e[2;34m" #define GRN "\e[0;32m" #define YLW "\e[0;33m" #define MAG "\e[0;35m" #define CYN "\e[0;36m" #define NRM "\e[0m" #endif ...
rosflight/airbourne_f4
include/vcp.h
<reponame>rosflight/airbourne_f4<gh_stars>1-10 #ifndef VCP_CLASS_H #define VCP_CLASS_H #include "gpio.h" #include "revo_f4.h" #include "serial.h" extern "C" { #include "stm32f4xx_conf.h" #include "usb_conf.h" #include "usbd_cdc_core.h" #include "usbd_cdc_vcp.h" #include "usbd_desc.h" #include "usbd_ioreq.h" #include ...
rosflight/airbourne_f4
include/i2c.h
<filename>include/i2c.h /* * Copyright (c) 2017, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this ...
rosflight/airbourne_f4
include/mpu6000.h
/* * Copyright (c) 2017, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions ...
rosflight/airbourne_f4
include/analog_pin.h
/* * Copyright (c) 2020, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions ...
rosflight/airbourne_f4
include/rc_sbus.h
/* * Copyright (c) 2017, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions ...
rosflight/airbourne_f4
include/hmc5883l.h
<filename>include/hmc5883l.h /* * Copyright (c) 2017, <NAME> and <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyrig...
rosflight/airbourne_f4
include/analog_digital_converter.h
/* * Copyright (c) 2020, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions ...
rosflight/airbourne_f4
include/backup_sram.h
#ifndef BACKUP_SRAM_H #define BACKUP_SRAM_H #include <cstddef> #include <stdint.h> void backup_sram_init(); void backup_sram_write(const void *src, size_t len); void backup_sram_read(void *dst, size_t len); void backup_sram_clear(size_t len); #endif // BACKUP_SRAM_H
rosflight/airbourne_f4
include/spi.h
<filename>include/spi.h /* * Copyright (c) 2017, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this ...
rosflight/airbourne_f4
lib/vcp/usb_bsp.c
<gh_stars>1-10 /** ****************************************************************************** * @file usb_bsp.c * @author MCD Application Team * @version V1.0.0 * @date 19-September-2011 * @brief This file is responsible to offer board support package and is * configurable by user. ...
rosflight/airbourne_f4
include/revo_f4.h
<reponame>rosflight/airbourne_f4 /* * Copyright (c) 2017, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright noti...
rosflight/airbourne_f4
include/system.h
<reponame>rosflight/airbourne_f4<gh_stars>1-10 /* * Copyright (c) 2017, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above ...
rosflight/airbourne_f4
include/battery_monitor.h
<filename>include/battery_monitor.h /* * Copyright (c) 2020, <NAME> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright n...
dania6789/Mathematical-Expression-Calculator
functions.h
#ifndef FUNCTION_H #define FUNCTION_H //function declarations #include<iostream> #include<iomanip> #include<string> #include<fstream> #include<cmath> #include<stack> #include<map> #include<vector> #include<sstream> #include<string.h> #include<algorithm> #include<cstdio> using namespace std; //EXPRESSION CLASS clas...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/BSHeaderView.h
// // BSHeaderView.h // BDSprite // // Created by ccguo on 2017/10/6. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BSHeaderView : UIView @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/BiteCoinDetail/Model/BDCoinItemModel.h
<filename>BDSprite/Controllers/BiteCoins/BiteCoinDetail/Model/BDCoinItemModel.h // // BDCoinItemModel.h // BDSprite // // Created by alibaba on 2017/10/31. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> extern NSString * const BDCoinFloorHeader; extern NSString * const BD...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/View/BSCategoryItem.h
// // BSCategoryItem.h // BDSprite // // Created by alibaba on 2017/10/11. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> typedef NS_ENUM(NSInteger,BSCategoryItemStyle){ BSCategoryItemStyleNormal = 0, BSCategoryItemStyleSelected }; @class BSCategoryItem; @protocol BSCatego...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Notification/NotificationListViewController.h
// // NotificationListViewController.h // BDSprite // // Created by Aufree on 9/26/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "NotificationListTableView.h" @interface NotificationListViewController : UIViewController @property (nonatomic, strong) NotificationListTa...
sunnycn2013/BDSprite_HK
BDSprite/Models/AdModel.h
// // AdModel.h // BDSprite // // Created by Aufree on 10/19/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import "BaseModel.h" #import "AdApi.h" @interface AdModel : BaseModel @property (nonatomic, strong) AdApi *api; - (id)getAdvertsLaunchScreen:(BaseResultBlock)block; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/Model/BDMeGroupModel.h
<filename>BDSprite/Controllers/Me/Model/BDMeGroupModel.h // // BDMeGroupModel.h // BDSprite // // Created by alibaba on 2017/11/7. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> typedef NS_ENUM(NSInteger,BDMeItemType){ BDMeItemTypeDefault = 0, BDMeItemTypeSwitch, ...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/View/BSCoinCell.h
// // BSCoinCell.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSCoinModel.h" @interface BSCoinCell : UITableViewCell @property (nonatomic,strong)BSCoinModel * coinInfo; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/BiteCoinDetail/Model/BDCoinModel.h
// // BDCoinModel.h // BDSprite // // Created by alibaba on 2017/10/31. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BDCoinModel : NSObject @property (nonatomic,strong) NSMutableArray * noteData; @property (nonatomic,strong) NSMutableArray * listData; @end...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Settings/SettingsViewController.h
// // SettingsViewController.h // BDSprite // // Created by Aufree on 10/4/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface SettingsViewController : UITableViewController @end
sunnycn2013/BDSprite_HK
BDSprite/Utils/Categories/UIResponder/UIResponder+Router.h
<filename>BDSprite/Utils/Categories/UIResponder/UIResponder+Router.h // // UIResponder+Router.h // BDSprite // // Created by zhengjinghua on 9/24/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface UIResponder (Router) - (void)routerEventWithName:(NSString *)eventName u...
sunnycn2013/BDSprite_HK
BDSprite/Constants/APIConstant.h
// // APIConstant.h // BDSprite // // Created by Aufree on 9/30/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #define APIAccessTokenURL [NSString stringWithFormat:@"%@%@", APIBaseURL, @"/oauth/access_token"] #define QiniuUploadTokenIdentifier @"QiniuUploadTokenIdentifier" #if DEBUG #define APIBaseUR...
sunnycn2013/BDSprite_HK
BDSprite/Utils/Entities/UserEntity.h
<gh_stars>0 // // UserEntity.h // BDSprite // // Created by Aufree on 9/22/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import "BaseEntity.h" @interface UserEntity : BaseEntity @property (nonatomic, copy) NSNumber *userId; @property (nonatomic, copy) NSString *githubURL; @property (nonatomic, copy...
sunnycn2013/BDSprite_HK
BDSprite/Handlers/BSLocalCache.h
// // BSLocalCache.h // BDSprite // // Created by alibaba on 2017/9/26. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BSLocalCache : NSObject + (instancetype)sharedCache; - (void)setObject:(id<NSCoding>)object forKey:(NSString *)key; - (BOOL)containsObjectF...
sunnycn2013/BDSprite_HK
BDSprite/Apis/TopicApi.h
// // TopicApi.h // BDSprite // // Created by Aufree on 9/22/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import "BaseApi.h" #import "TopicEntity.h" #import "CommentEntity.h" @interface TopicApi : BaseApi - (id)getAll:(BaseResultBlock)block atPage:(NSInteger)pageIndex; - (id)getExcellentTopicList...
sunnycn2013/BDSprite_HK
BDSprite/Handlers/AccessTokenHandler.h
<reponame>sunnycn2013/BDSprite_HK // // AccessTokenHandler.h // BDSprite // // Created by Aufree on 9/21/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "AFOAuth2Manager.h" @interface AccessTokenHandler : NSObject + (void)fetchClientGrantToken; + (NSString *...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/WiKiListViewController.h
<gh_stars>0 // // WiKiListViewController.h // BDSprite // // Created by Aufree on 9/22/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSBaseViewController.h" @interface WiKiListViewController : BSBaseViewController @end
sunnycn2013/BDSprite_HK
BDSprite/Apis/AdApi.h
<filename>BDSprite/Apis/AdApi.h // // AdApi.h // BDSprite // // Created by Aufree on 10/19/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import "BaseApi.h" @interface AdApi : BaseApi - (id)getAdvertsLaunchScreen:(BaseResultBlock)block; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/User/EditUserProfileViewController.h
<gh_stars>0 // // EditUserProfileViewController.h // BDSprite // // Created by Aufree on 10/4/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @protocol EditUserProfileViewControllerDelegate <NSObject> - (void)refreshUserProfileView; @end @interface EditUserProfileViewController ...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/Model/BDMeModel.h
// // BDMeModel.h // BDSprite // // Created by alibaba on 2017/11/7. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BDMeModel : NSObject @property (nonatomic,strong) NSMutableArray * items; @end
sunnycn2013/BDSprite_HK
BDSprite/BaseClasses/RxWebViewController/RxWebViewController.h
<filename>BDSprite/BaseClasses/RxWebViewController/RxWebViewController.h<gh_stars>0 // // RxWebViewController.h // RxWebViewController // // Created by roxasora on 15/10/23. // Copyright © 2015年 roxasora. All rights reserved. // #import <UIKit/UIKit.h> @interface RxWebViewController : UIViewController /** * or...
sunnycn2013/BDSprite_HK
BDSprite/Models/CategoryModel.h
<filename>BDSprite/Models/CategoryModel.h // // CategoryModel.h // BDSprite // // Created by Aufree on 10/10/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import "BaseModel.h" #import "CategoryApi.h" @interface CategoryModel : BaseModel @property (nonatomic, strong) CategoryApi *api; - (id)getAllTopi...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/LocalPage/BSLocalPageViewController.h
// // BSLocalPageViewController.h // BDSprite // // Created by alibaba on 2017/9/27. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "BSBaseViewController.h" typedef NS_ENUM(NSInteger, BSLocalPageType){ BSLocalPageTypeHistory = 0, BSLocalPageTypeFavourite }...
sunnycn2013/BDSprite_HK
BDSprite/Common/MTA/MTADefine.h
// // MTADefine.h // CaibeiMarket // // Created by icaibei on 2017/8/19. // Copyright © 2017年 qianji. All rights reserved. // #import <Foundation/Foundation.h> #pragma mark- 次数 extern NSString * const App_icaibei_start_ios; #pragma mark- 时常 extern NSString * const App_webView_load_time;
sunnycn2013/BDSprite_HK
BDSprite/Utils/Entities/NotificationEntity.h
// // NotificationEntity.h // BDSprite // // Created by Aufree on 9/26/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import "BaseEntity.h" #import "UserEntity.h" @interface NotificationEntity : BaseEntity @property (nonatomic, strong) NSNumber *notificationId; @property (nonatomic, copy) NSString *...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/BiteCoinDetail/BDCoinDetailViewController.h
// // BDCoinDetailViewController.h // BDSprite // // Created by alibaba on 2017/10/31. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSBaseViewController.h" #import "BSCoinModel.h" @interface BDCoinDetailViewController : BSBaseViewController - (instancetype)initWithModel...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Settings/BSShowMessageViewController.h
<reponame>sunnycn2013/BDSprite_HK // // BSShowMessageViewController.h // BDSprite // // Created by ccguo on 2017/9/8. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BSShowMessageViewController : UIViewController @end
sunnycn2013/BDSprite_HK
BDSprite/Models/NotificationModel.h
// // NotificationModel.h // BDSprite // // Created by Aufree on 10/13/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import "BaseModel.h" #import "NotificationApi.h" @interface NotificationModel : BaseModel @property (nonatomic, strong) NotificationApi *api; - (id)getNotificationList:(BaseResultBlock...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/Search/CMSearchViewController.h
<filename>BDSprite/Controllers/BiteCoins/Search/CMSearchViewController.h<gh_stars>0 // // CMSearchViewController.h // BDSprite // // Created by alibaba on 2017/11/12. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSBaseViewController.h" @interface CMSearchViewController :...
sunnycn2013/BDSprite_HK
BDSprite/Views/LaunchAd/LaunchScreenAdView.h
// // LaunchScreenAdView.h // BDSprite // // Created by Aufree on 10/19/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "SkipButton.h" @interface LaunchScreenAdView : UIView @property (nonatomic, assign) NSTimeInterval timePerImage; @property (nonatomic, strong) UIImageVi...
sunnycn2013/BDSprite_HK
BDSprite/Handlers/BSLocalCacheDefine.h
// // BSLocalCacheDefine.h // BDSprite // // Created by alibaba on 2017/9/26. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> FOUNDATION_EXTERN NSString * const BSLocalCacheHistory; FOUNDATION_EXTERN NSString * const BSLocalCacheFavourite;
sunnycn2013/BDSprite_HK
BDSprite/BaseClasses/BaseModel.h
<gh_stars>0 // // BaseModel.h // BDSprite // // Created by Aufree on 9/21/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BaseModel : NSObject + (instancetype)Instance; - (id)create:(id)entity withBlock:(BaseResultBlock)block; - (id)update:(id)entity withB...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/TabBar/BaseTabBarViewController.h
<filename>BDSprite/Controllers/TabBar/BaseTabBarViewController.h // // BaseTabBarViewController.h // BDSprite // // Created by Aufree on 9/21/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BaseTabBarViewController : UITabBarController <UITabBarControllerDelegate> - ...
sunnycn2013/BDSprite_HK
BDSprite/Views/Settings/BSSettingCell.h
<filename>BDSprite/Views/Settings/BSSettingCell.h // // BSSettingCell.h // BDSprite // // Created by alibaba on 2017/9/28. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BSSettingCell : UITableViewCell @end
sunnycn2013/BDSprite_HK
BDSprite/Common/BuglyManager/BuglyManager.h
// // BuglyManager // CaibeiMarket // // Created by icaibei on 2017/8/19. // Copyright © 2017年 qianji. All rights reserved. // #import <Foundation/Foundation.h> @interface BuglyManager : NSObject + (void)initBugly; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/WaterView.h
// // WaterView.h // WaterWave // // Created by mobi on 16/1/6. // Copyright © 2016年 snapking. All rights reserved. // #import <UIKit/UIKit.h> @interface WaterView : UIView @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/BDMineCell.h
// // BDMineCell.h // BDSprite // // Created by ccguo on 2017/11/5. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BDMineCell : UITableViewCell @property (nonatomic ,copy)void(^tapBlock)(id obj,UITableViewCell * cell); - (void)fillData:(id)model; - (void)clearText; @...
sunnycn2013/BDSprite_HK
BDSprite/Common/MTA/MTAManager.h
<reponame>sunnycn2013/BDSprite_HK // // MTAManager.h // CaibeiMarket // // Created by icaibei on 2017/8/19. // Copyright © 2017年 qianji. All rights reserved. // #import <Foundation/Foundation.h> #import "MTA.h" #import "MTAConfig.h" #import "MTADefine.h" @interface MTAManager : NSObject + (void)initMTA; /** 页面...
sunnycn2013/BDSprite_HK
BDSprite/Apis/NotificationApi.h
// // NotificationApi.h // BDSprite // // Created by Aufree on 10/13/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import "BaseApi.h" #import "NotificationEntity.h" @interface NotificationApi : BaseApi - (id)getNotificationList:(BaseResultBlock)block atPage:(NSInteger)pageIndex; - (id)getUnreadNotifi...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Topic/ReplyTopicViewController.h
// // ReplyTopicViewController.h // BDSprite // // Created by Aufree on 10/9/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @protocol ReplyTopicViewControllerDelegate <NSObject> @optional - (void)jumpToCommentsView; - (void)reloadCommentListView; @end @interface ReplyTopicViewC...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/MeViewController.h
<reponame>sunnycn2013/BDSprite_HK // // MeViewController.h // BDSprite // // Created by Aufree on 9/23/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BDShowInfoViewController.h" #import "BDAboutViewController.h" #import "BDJoninWeixinViewController.h" @interface MeVie...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/Model/BSCoinModel.h
<gh_stars>0 // // BSCoinModel.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BSCoininfoBean : NSObject @property (nonatomic,strong) NSNumber * coinID; @property (nonatomic,strong) NSString * imageurl; @propert...
sunnycn2013/BDSprite_HK
BDSprite/Views/Base/BaseWebView.h
// // BaseWebView.h // BDSprite // // Created by Aufree on 10/27/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BaseWebView : UIWebView @property (nonatomic, copy) NSString *urlString; - (instancetype)initWithFrame:(CGRect)frame urlString:(NSString *)urlString; @end
sunnycn2013/BDSprite_HK
BDSprite/Views/Notification/NotificationListCell.h
<reponame>sunnycn2013/BDSprite_HK<filename>BDSprite/Views/Notification/NotificationListCell.h // // NotificationListCell.h // BDSprite // // Created by Aufree on 9/26/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "NotificationEntity.h" @interface NotificationListCell ...
sunnycn2013/BDSprite_HK
BDSprite/Views/Comment/CommentListViewController.h
// // CommentListViewController.h // BDSprite // // Created by Aufree on 10/26/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface CommentListViewController : UIViewController @property (nonatomic, strong) TopicEntity *topic; @end
sunnycn2013/BDSprite_HK
BDSprite/Views/Topic/TopicSearchBar.h
// // TopicSearchBar.h // BDSprite // // Created by Aufree on 10/12/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface TopicSearchBar : UISearchBar - (instancetype)initWithFrame:(CGRect)frame; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Index/EssentialListViewController.h
// // EssentialListViewController.h // BDSprite // // Created by Aufree on 9/21/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSBaseViewController.h" #import <SafariServices/SafariServices.h> @interface EssentialListViewController : BSBaseViewController @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Message/Message/View/BSWeiBoCell.h
<reponame>sunnycn2013/BDSprite_HK // // BSWeiBoCell.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSWeiBoModel.h" @interface BSWeiBoCell : UITableViewCell @property (nonatomic,strong)BSWeiBoModel * weibo; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/SecondVC/BDJoninWeixinViewController.h
// // BDJoninWeixinViewController.h // BDSprite // // Created by alibaba on 2017/11/12. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BDJoninWeixinViewController : UIViewController @end
sunnycn2013/BDSprite_HK
BDSprite/Utils/Categories/NSString/NSString+Additions.h
<gh_stars>0 // // NSString+Additions.h // BDSprite // // Created by Aufree on 10/1/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface NSString (Additions) + (BOOL)isStringEmpty:(NSString *)string; + (NSNumber *)covertToNumber:(NSString *)numberString; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Index/Model/BSTopicModel.h
// // BSTopicModel.h // BDSprite // // Created by Aufree on 9/22/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import "TopicApi.h" @interface BSTopicInfo : NSObject @property (nonatomic, strong) NSNumber *topicId; @property (nonatomic, strong) NSNumber *categoryId; @property (nonatomic, copy) NSSt...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/ViewModel/BSCoinViewModel.h
// // BSCoinViewModel.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "BSCoinAPI.h" #import "BSCoinModel.h" @interface BSCoinViewModel : NSObject @property (nonatomic,strong) BSCoinAPI * request; @property (nona...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/View/BSCoinCategoryView.h
<reponame>sunnycn2013/BDSprite_HK // // BSCoinCategoryView.h // BDSprite // // Created by alibaba on 2017/10/10. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @class BSCoinCategoryView; @protocol BSCoinCategoryViewDelegate<NSObject> - (void)coinCategoryView:(BSCoinCategoryView *)...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Index/View/BSBottomView.h
// // BSBottomView.h // BDSprite // // Created by ccguo on 2017/9/24. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @class BSBottomView; @protocol BSBottomViewDelegate <NSObject> - (void)bottomView:(BSBottomView *)view didSelectItem:(NSInteger)index; @end @interface BSBottomVie...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Me/SecondVC/BDShowInfoViewController.h
<filename>BDSprite/Controllers/Me/SecondVC/BDShowInfoViewController.h // // BDShowInfoViewController.h // BDSprite // // Created by alibaba on 2017/11/12. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BDShowInfoViewController : UIViewController @end
sunnycn2013/BDSprite_HK
BDSprite/BaseClasses/BDBaseAPI.h
// // BDBaseModel.h // BDSprite // // Created by alibaba on 2017/8/31. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "BDBaseRequest.h" @interface BDBaseAPI : NSObject @property (nonatomic,strong)BDBaseRequest * request; @property (nonatomic,strong)NSDictionary ...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Index/View/BSTopicCell.h
<reponame>sunnycn2013/BDSprite_HK<filename>BDSprite/Controllers/Index/View/BSTopicCell.h // // BSTopicCell.h // BDSprite // // Created by alibaba on 2017/9/3. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSTopicModel.h" @interface BSTopicCell : UITableViewCell @property...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Message/Message/Request/BSWeiBoAPI.h
<reponame>sunnycn2013/BDSprite_HK // // BSWeiBoAPI.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import "BDBaseAPI.h" @interface BSWeiBoAPI : BDBaseAPI @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Message/Message/BSWeiboViewController.h
<reponame>sunnycn2013/BDSprite_HK<filename>BDSprite/Controllers/Message/Message/BSWeiboViewController.h // // BSWeiboViewController.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import "BSBaseViewController.h" @interface BSWeiboViewController : BSBaseV...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/Request/BSCoinAPI.h
// // BSCoinAPI.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import "BDBaseAPI.h" @interface BSCoinAPI : BDBaseAPI @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/BiteCoinDetail/Cell/BDCoinDetailMarketCell.h
// // BDCoinDetailMarketCell.h // BDSprite // // Created by alibaba on 2017/10/31. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BDCoinDetailMarketCell : UITableViewCell @end
sunnycn2013/BDSprite_HK
BDSprite/BaseClasses/BDBaseRequest.h
// // BDBaseApi.h // BDSprite // // Created by alibaba on 2017/8/31. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "AFHTTPSessionManager.h" @interface BDBaseRequest : NSObject @property (nonatomic, strong,readonly)AFHTTPSessionManager * _Nullable request; @prop...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Message/Detail/BDMessageDetailViewController.h
// // BDMessageDetailViewController.h // BDSprite // // Created by alibaba on 2017/10/30. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSBaseViewController.h" @interface BDMessageDetailViewController : BSBaseViewController - (instancetype)initWithParams:(NSDictionary *)...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/BiteCoins/BiteCoinDetail/view/BDCoinHeadView.h
<gh_stars>0 // // BDCoinHeadView.h // BDSprite // // Created by alibaba on 2017/11/2. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface BDCoinHeadView : UIView - (void)fillTitle:(NSString *)title; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Message/Message/Model/BSWeiBoModel.h
// // BSSWeiBoModel.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BSWeiBoModel : NSObject @property (nonatomic,strong)NSString * wbname; @property (nonatomic,strong)NSString * text; @property (nonatomic,stro...
sunnycn2013/BDSprite_HK
BDSprite/Handlers/JumpToOtherVCHandler.h
// // JumpToOtherVCHandler.h // BDSprite // // Created by Aufree on 10/8/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "TopicEntity.h" @interface JumpToOtherVCHandler : NSObject + (UIViewController *)getTabbarViewController; + (void)pushToOtherView:(UIViewCont...
sunnycn2013/BDSprite_HK
BDSprite/Views/Topic/TopicListCell.h
// // TopicListCell.h // BDSprite // // Created by Aufree on 9/21/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "BSTopicModel.h" @interface TopicListCell : UITableViewCell @property (nonatomic, strong) BSTopicInfo *topicEntity; @end
sunnycn2013/BDSprite_HK
BDSprite/Views/Topic/TopicListTableView.h
// // TopicListTableView.h // BDSprite // // Created by Aufree on 9/23/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @protocol TopicListTableViewDelegate <NSObject> - (void)headerRefreshing; - (void)footerRereshing; @end @interface TopicListTableView : UITableView @property ...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/User/UserProfileViewController.h
// // UserProfileViewController.h // BDSprite // // Created by Aufree on 10/2/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "UserEntity.h" @interface UserProfileViewController : UITableViewController @property (nonatomic, strong) UserEntity *userEntity; @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Topic/TopicDetailViewController.h
<reponame>sunnycn2013/BDSprite_HK // // TopicDetailViewController.h // BDSprite // // Created by Aufree on 10/8/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "TopicEntity.h" @interface TopicDetailViewController : UIViewController @property (nonatomic, strong) TopicEntit...
sunnycn2013/BDSprite_HK
BDSprite/Utils/Categories/UIViewController/UIViewController+Custom.h
<reponame>sunnycn2013/BDSprite_HK<gh_stars>0 // // UIViewController+Custom.h // BDSprite // // Created by Aufree on 10/3/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface UIViewController (Custom) @end
sunnycn2013/BDSprite_HK
BDSprite/Utils/Entities/CommentEntity.h
<filename>BDSprite/Utils/Entities/CommentEntity.h // // CommentEntity.h // BDSprite // // Created by Aufree on 10/9/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import "BaseEntity.h" @interface CommentEntity : BaseEntity @property (nonatomic, copy) NSNumber *commentId; @property (nonatomic, copy) NS...
sunnycn2013/BDSprite_HK
BDSprite/Utils/Cache/BSCacheManager.h
// // BSCacheManager.h // BDSprite // // Created by alibaba on 2017/9/26. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BSCacheManager : NSObject + (instancetype)sharedCache; - (void)saveHistoryNews:(id)object key:(NSString *)key; - (void)saveFavouriteNews:...
sunnycn2013/BDSprite_HK
BDSprite/BaseClasses/BaseApi.h
// // BaseApi.h // BDSprite // // Created by Aufree on 9/21/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import "AFHTTPSessionManager.h" #import "APIRequestHandler.h" typedef void (^ BaseResultBlock)(id data, NSError *error); typedef void (^ BaseRequestSuccessBlock)(NSURLSessionDataTask *task, id ...
sunnycn2013/BDSprite_HK
BDSprite/Utils/Categories/GVUserDefaults/GVUserDefaults+Properties.h
// // GVUserDefaults+Properties.h // BDSprite // // Created by Aufree on 9/30/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import "GVUserDefaults.h" @interface GVUserDefaults (Properties) @property (nonatomic, copy) NSString *userClientToken; @property (nonatomic, copy) NSNumber *currentUserId; @p...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Index/Request/BSTopicAPI.h
// // BDTopicAPI.h // BDSprite // // Created by alibaba on 2017/8/31. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "BDBaseAPI.h" @interface BSTopicAPI : BDBaseAPI @end
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Message/Message/ViewModel/BSWeiBoViewModel.h
<reponame>sunnycn2013/BDSprite_HK // // BSWeiBoViewModel.h // BDSprite // // Created by alibaba on 2017/9/1. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "BSWeiBoAPI.h" @interface BSWeiBoViewModel : NSObject @property (nonatomic,strong) BSWeiBoAPI * request; @...
sunnycn2013/BDSprite_HK
BDSprite/Controllers/Index/ViewModel/BSTopicViewModel.h
// // BSTopicViewModel.h // BDSprite // // Created by alibaba on 2017/9/3. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> #import "BSTopicModel.h" #import "BSTopicAPI.h" @interface BSTopicViewModel : NSObject @property (nonatomic,strong) BSTopicAPI * request; @property ...
sunnycn2013/BDSprite_HK
BDSprite/ThirdParty/TitlePagerView/TitlePagerView.h
// // TitlePagerView.h // BDSprite // // Created by Aufree on 9/22/15. // Copyright (c) 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @protocol TitlePagerViewDelegate <NSObject> @optional - (void)didTouchBWTitle:(NSUInteger)index; @end @interface TitlePagerView : UIView @property (nonatomic, st...
sunnycn2013/BDSprite_HK
BDSprite/BaseClasses/BDSpriteContext.h
// // BDSpriteContext.h // BDSprite // // Created by alibaba on 2017/11/12. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <Foundation/Foundation.h> @interface BDSpriteContext : NSObject @property (nonatomic,assign)BOOL isDesRed; + (instancetype)sharedInstance; @end
sunnycn2013/BDSprite_HK
BDSprite/BaseClasses/BSWebViewController.h
// // BSWebViewController.h // BDSprite // // Created by alibaba on 2017/9/20. // Copyright © 2017年 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> #import "RxWebViewController.h" @interface BSWebViewController : RxWebViewController @property (nonatomic,strong)NSDictionary * params; @property (nonatom...
sunnycn2013/BDSprite_HK
BDSprite/Views/Base/SkipButton.h
<filename>BDSprite/Views/Base/SkipButton.h // // SkipButton.h // BDSprite // // Created by Aufree on 10/19/15. // Copyright © 2015 ESTGroup. All rights reserved. // #import <UIKit/UIKit.h> @interface SkipButton : UIButton @end