repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
schmitzn/node-packer | node/deps/icu-small/source/common/static_unicode_sets.h | // © 2018 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
// This file contains utilities to deal with static-allocated UnicodeSets.
//
// Common use case: you write a "private static final" UnicodeSet in Java, and
// want something similarly easy in C++. Original... |
schmitzn/node-packer | node/deps/libsquash/tests/main.c | <gh_stars>10-100
/*
* Copyright (c) 2017 <NAME> <<EMAIL>>
* <NAME> <<EMAIL>>
*
* This file is part of libsquash, distributed under the MIT License
* For full terms see the included LICENSE file
*/
#include "squash.h"
#include <stdint.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h... |
schmitzn/node-packer | node/src/env.h | <filename>node/src/env.h
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the ... |
schmitzn/node-packer | node/deps/icu-small/source/i18n/unicode/reldatefmt.h | <reponame>schmitzn/node-packer
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*****************************************************************************
* Copyright (C) 2014-2016, International Business Machines Corporation and
* others.
* All Right... |
TerminalCursor/Mathematics | Lists.c | <gh_stars>0
#include "Lists.h"
List* make_list(int length) {
int* list = malloc(length*sizeof(int));
List* result = malloc(sizeof(List));
result->length = length;
result->data = list;
return result;
}
List* fill_list(int length, int* list) {
List* result = make_list(length);
for(int i = 0; i < length; i++)
r... |
TerminalCursor/Mathematics | Math/Crypto/Crypto.c | <reponame>TerminalCursor/Mathematics
#include "Crypto.h"
int F(int data, int key) {
return data + key + 7;
}
void swap_two(int* parts) {
parts[0] ^= parts[1];
parts[1] ^= parts[0];
parts[0] ^= parts[1];
}
int* reverse_list(int len, int* list) {
int* rev_list = malloc(len*sizeof(int));
for(int i = 0; i < len; i... |
TerminalCursor/Mathematics | Math/General.h | <filename>Math/General.h
#ifndef GENERAL_H
#define GENERAL_H
double d_pow(double, int);
long l_pow(long, long);
double square_root(double);
int gcd(int, int);
#endif
|
TerminalCursor/Mathematics | main.c | <reponame>TerminalCursor/Mathematics<gh_stars>0
#include <stdio.h>
#include <stdlib.h>
#include "Math/Matrix.h"
#include "Math/Polynomial.h"
#include "Math/General.h"
#include "Math/Crypto/Crypto.h"
#include "Lists.h"
int main() {
/* Fiestel */
long leData = 0x30F0E67;
int leKeys[] = {8, 6, 7};
int* leKeys1 = reve... |
TerminalCursor/Mathematics | Math/Matrix.c | #include "Matrix.h"
// Allocate Memory for Matrix
Matrix* make_matrix(int rows, int columns) {
Matrix* matrix = malloc(sizeof(Matrix));
matrix->n_rows = rows;
matrix->n_columns = columns;
matrix->data = (double**)malloc(sizeof(double*) * rows);
for(int row = 0; row < rows; row++)
matrix->data[row] = (double*)ca... |
TerminalCursor/Mathematics | Lists.h | <reponame>TerminalCursor/Mathematics
#ifndef LISTS_H
#define LISTS_H
#include <stdio.h>
#include <stdlib.h>
typedef struct {
int length;
int* data;
} List;
List* make_list(int);
List* fill_list(int, int*);
void free_list(List*);
int* i_extend_list(int, int*);
int* i_append_to_list(int, int*, int);
#endif
|
TerminalCursor/Mathematics | Math/Crypto/Crypto.h | #ifndef CRYPTO_H
#define CRYPTO_H
#include <stdio.h>
#include <stdlib.h>
#include "../General.h"
int F(int data, int key);
void swap_two(int* parts);
int* reverse_list(int len, int* list);
long Fiestel(int keys, long data, int* key, int (*fptr)(int,int));
long l_mod_p(long base, long exp, long m);
#endif
|
TerminalCursor/Mathematics | Math/General.c | <filename>Math/General.c
#include "General.h"
double d_pow(double x, int p) {
if(p == 0)
return 1.0f;
if(p > 1)
return x * d_pow(x, p - 1);
else
return x;
}
long l_pow(long x, long p) {
if(p == 0)
return 1;
if(p > 1)
return x * l_pow(x, p - 1);
else
return x;
}
double square_root(double n) {
doubl... |
TerminalCursor/Mathematics | Math/Polynomial.c | <reponame>TerminalCursor/Mathematics
#include "Polynomial.h"
Polynomial* make_polynomial(int degree) {
Polynomial* polynomial = malloc(sizeof(Polynomial));
polynomial->degree = degree;
polynomial->coefficients = (double*)calloc(degree+1, sizeof(double));
return polynomial;
}
void free_polynomial(Polynomial* polyn... |
TerminalCursor/Mathematics | Math/Polynomial.h | #ifndef POLYNOMIAL_H
#define POLYNOMIAL_H
#include "Matrix.h"
typedef struct {
int degree;
double* coefficients;
} Polynomial;
Polynomial* make_polynomial(int);
void free_polynomial(Polynomial*);
Polynomial* clone_polynomial(Polynomial*);
void print_polynomial(Polynomial*);
Polynomial* mp_multiply(Matrix*, Pol... |
TerminalCursor/Mathematics | Math/Matrix.h | #ifndef MATRIX_H
#define MATRIX_H
#include <stdio.h>
#include <stdlib.h>
#include "General.h"
typedef struct {
int n_rows;
int n_columns;
double** data;
} Matrix;
Matrix* make_matrix(int, int);
void free_matrix(Matrix*);
Matrix* clone_matrix(Matrix*);
Matrix* fill_matrix(double*, int, int);
void print_matrix(... |
ghostjat/Np | src/core/blas.h | #define FFI_SCOPE "blas"
#define FFI_LIB "libblas.so"
typedef size_t CBLAS_INDEX_t;
void openblas_set_num_threads(int num_threads);
void goto_set_num_threads(int num_threads);
int openblas_get_num_threads(void);
int openblas_get_num_procs(void);
char* openblas_get_config(void);
char* openblas_get_co... |
ghostjat/Np | src/core/lapack.h | <filename>src/core/lapack.h<gh_stars>1-10
#define FFI_SCOPE "lapack"
#define FFI_LIB "liblapacke.so"
int LAPACKE_dgetrf( int matrix_layout, int m, int n,
double* a, int lda, int* ipiv );
int LAPACKE_dgetri( int matrix_layout, int n, double* a,
int lda, const int*... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/mrmpi.h | /* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
------------------------------------... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/random_mars.h | <filename>Thirdparty/mrmpi/oink/random_mars.h
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI d... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/memory.h | <reponame>prateekstark/pagerank
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
----... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/error.h | <reponame>prateekstark/pagerank<gh_stars>0
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI dire... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/map_rmat_generate.h | <gh_stars>0
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
------------------------... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/luby_find.h | <filename>Thirdparty/mrmpi/oink/luby_find.h
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI dir... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/style_map.h | <reponame>prateekstark/pagerank
#if defined MAP_TASK_STYLE
MapStyle(rmat_generate)
#elif defined MAP_FILE_STYLE
MapStyle(read_edge)
MapStyle(read_edge_label)
MapStyle(read_edge_weight)
MapStyle(read_vertex_label)
MapStyle(read_vertex_weight)
MapStyle(read_words)
#elif defined MAP_STRING_STYLE
#elif defined MAP_MR... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/command.h | /* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
------------------------------------... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/style_compare.h | #ifdef COMPARE_STYLE
#else
#endif
|
prateekstark/pagerank | Thirdparty/mrmpi/oink/pagerank.h | /* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
------------------------------------... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/universe.h | <reponame>prateekstark/pagerank
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
----... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/pointers.h | <filename>Thirdparty/mrmpi/oink/pointers.h
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI dire... |
prateekstark/pagerank | Thirdparty/mrmpi/src/cmapreduce.h | /* ----------------------------------------------------------------------
MR-MPI = MapReduce-MPI library
http://www.cs.sandia.gov/~sjplimp/mapreduce.html
<NAME>, <EMAIL>, Sandia National Laboratories
Copyright (2009) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporat... |
prateekstark/pagerank | Thirdparty/mrmpi/src/spool.h | /* ----------------------------------------------------------------------
MR-MPI = MapReduce-MPI library
http://www.cs.sandia.gov/~sjplimp/mapreduce.html
<NAME>, <EMAIL>, Sandia National Laboratories
Copyright (2009) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporat... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/style_reduce.h | <filename>Thirdparty/mrmpi/oink/style_reduce.h<gh_stars>0
#ifdef REDUCE_STYLE
ReduceStyle(count)
ReduceStyle(cull)
#else
#include "keyvalue.h"
using MAPREDUCE_NS::KeyValue;
void count(char *key, int keybytes, char *multivalue,
int nvalues, int *valuebytes, KeyValue *kv, void *ptr);
void cull(char *key, int keyb... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/style_hash.h | <filename>Thirdparty/mrmpi/oink/style_hash.h<gh_stars>0
#ifdef HASH_STYLE
#else
#endif
|
prateekstark/pagerank | Thirdparty/mrmpi/oink/neigh_tri.h | <filename>Thirdparty/mrmpi/oink/neigh_tri.h
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI dir... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/style_scan.h | <reponame>prateekstark/pagerank
#if defined SCAN_KV_STYLE
ScanStyle(print_edge)
ScanStyle(print_string_int)
ScanStyle(print_vertex)
#elif defined SCAN_KMV_STYLE
#else
void print_edge(char *key, int keybytes,
char *value, int valuebytes, void *ptr);
void print_string_int(char *key, int keybytes,
char *va... |
prateekstark/pagerank | Thirdparty/mrmpi/src/irregular.h | <reponame>prateekstark/pagerank
/* ----------------------------------------------------------------------
MR-MPI = MapReduce-MPI library
http://www.cs.sandia.gov/~sjplimp/mapreduce.html
<NAME>, <EMAIL>, Sandia National Laboratories
Copyright (2009) Sandia Corporation. Under the terms of Contract
DE-AC0... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/typedefs.h | <reponame>prateekstark/pagerank
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
----... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/library.h | <gh_stars>0
/* ----------------------------------------------------------------------
OINK - scripting wrapper on MapReduce-MPI library
http://www.sandia.gov/~sjplimp/mapreduce.html, Sandia National Laboratories
<NAME>, <EMAIL>
See the README file in the top-level MR-MPI directory.
------------------------... |
prateekstark/pagerank | Thirdparty/mrmpi/oink/style_command.h | #include "cc_find.h"
#include "cc_stats.h"
#include "degree.h"
#include "degree_stats.h"
#include "degree_weight.h"
#include "edge_upper.h"
#include "histo.h"
#include "luby_find.h"
#include "neigh_tri.h"
#include "neighbor.h"
#include "pagerank.h"
#include "rmat.h"
#include "rmat2.h"
#include "sssp.h"
#include "tri_fi... |
szatanjl/dwm | config.h | /* See LICENSE file for copyright and license details. */
#include <X11/XF86keysym.h>
/* appearance */
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int gappx = 10; /* gap pixel between windows */
static const unsigned int snap = 10; /* snap pi... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Dependcy/GJCFAssetsPicker/Uitil/GJCFAssetsPickerConstans.h | <gh_stars>1000+
//
// GJAssetsPickerConstans.h
// GJAssetsPickerViewController
//
// Created by ZYVincent QQ:1003081775 on 14-9-8.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <AssetsLibrary/AssetsLibrary.h>
#import "GJCFAssetsPickerStyle.h"
#import "UIButton+... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/MusicShare/GJGCMusicSearchResultListDataManager.h | //
// GJGCMusicSearchResultListDataManager.h
// ZYChat
//
// Created by ZYVincent on 15/11/25.
// Copyright (c) 2015年 ZYProSoft. All rights reserved.
//
#import "BTActionSheetDataManager.h"
@interface GJGCMusicSearchResultListDataManager : BTActionSheetDataManager
@property (nonatomic,strong)NSString *keyword;
... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/ViewController/MessageExtend/GJGCMessageExtendModel.h | <gh_stars>1000+
//
// GJGCMessageExtendBaseModel.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/20.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJGCMessageExtendUserModel.h"
#import "GJGCMessageExtendContentGIFModel.h"
#import ... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/MainTab/GJGCForwardEngine.h | //
// GJGCForwardEngine.h
// ZYChat
//
// Created by ZYVincent on 16/8/9.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJGCContactsContentModel.h"
#import "BTTabBarRootController.h"
@interface GJGCForwardEngine : NSObject
+ (BTTabBarRootController *)tabBarVC;... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Dependcy/GJCUImageBrowser/ViewController/GJCUImageBrowserViewControllerDataSource.h | //
// GJCFImageBrowserViewControllerDelegate.h
// GJCommonFoundation
//
// Created by ZYVincent QQ:1003081775 on 14-10-30.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
@class GJCUImageBrowserViewController;
@protocol GJCUImageBrowserViewControllerDataSource <NSObjec... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/GJGCChatInputPanel/GJGCChatInputExpandMenuPanelDataSource.h | <gh_stars>1000+
//
// GJGCChatInputExpandMenuPanelDataSource.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-10-28.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJGCChatInputConst.h"
#import "GJGCChatInputExpandMenuPanelConfigModel.h"
#define GJGC... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Dependcy/GJCFAudioManager/Encode&Decode/GJCFEncodeAndDecode.h | <reponame>AnriKaede/ZY2017IM
//
// GJCFEncodeAndDecode.h
// GJCommonFoundation
//
// Created by ZYVincent QQ:1003081775 on 14-9-16.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJCFAudioModel.h"
/*
* iOS 支持自身的格式是Wav格式,
* 我们将需要转成Wav格式的文件都认为是临时编码文件
*/
@inte... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Service/DataCenter/ZYDataCenter.h | <gh_stars>1000+
//
// ZYDataCenter.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/6.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ZYDataCenterInterface.h"
#import "ZYDataCenterRequestCondition.h"
#import "ZYNetWorkManager.h"
ty... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Dependcy/DownloadManager/GJCFFileDownloadManager.h | //
// GJCFFileDownloadManager.h
// GJCommonFoundation
//
// Created by ZYVincent QQ:1003081775 on 14-9-18.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJCFFileDownloadTask.h"
@class GJCFFileDownloadTask;
typedef void (^GJCFFileDownloadManagerCompletionBloc... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/Base/GJGCChatBaseConstans.h | <filename>ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/Base/GJGCChatBaseConstans.h
//
// GJGCChatBaseConstans.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-5.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* 消息三大类型
*/
typedef NS_ENUM(NSUInteg... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/ViewController/Base/GJGCChatDetailDataSourceManager.h | <gh_stars>1000+
//
// GJGCChatDetailDataSourceManager.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-3.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJGCChatBaseConstans.h"
#import "GJGCChatBaseCell.h"
#import "GJGCChatSystemNotiModel.h"
#impor... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/ViewController/MessageExtend/GJGCMessageExtendSendFlowerModel.h | //
// GJGCMessageExtendSendFlower.h
// ZYChat
//
// Created by ZYVincent on 16/5/15.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import "JSONModel.h"
@interface GJGCMessageExtendSendFlowerModel : JSONModel
@property (nonatomic,strong)NSString *displayText;
@property (nonatomic,strong)NSString *notS... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/ChatCell/GJGCChatFriendDriftBottleCell.h | //
// GJGCChatFriendDriftBottleCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/6/30.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "GJGCChatFriendImageMessageCell.h"
@interface GJGCChatFriendDriftBottleCell : GJGCChatFriendImageMessageCell
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/ChatCell/GJGCChatFriendMemberWelcomeCell.h | //
// GJGCChatFriendMemberWelcomeCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15-3-18.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "GJGCChatFriendBaseCell.h"
@interface GJGCChatFriendMemberWelcomeCell : GJGCChatFriendBaseCell
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Contacts/GJGCContactsUserCell.h | //
// GJGCContactsUserCell.h
// ZYChat
//
// Created by ZYVincent on 16/8/9.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import "GJGCContactsBaseCell.h"
@interface GJGCContactsUserCell : GJGCContactsBaseCell
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Login/HARegistContentModel.h | //
// HARegistContentModel.h
// HelloAsk
//
// Created by ZYVincent on 15-9-4.
// Copyright (c) 2015年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* 内容类型
*/
typedef NS_ENUM(NSUInteger, HARegistContentType){
/**
* 用户名
*/
HARegistContentTypeUserName,
/**
* ... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/BTActionSheetViewController/BTDateActionSheetViewController.h | <reponame>AnriKaede/ZY2017IM
//
// BTDateActionSheetViewController.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/9/9.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "BTActionSheetViewController.h"
@interface BTDateActionSheetViewController : BTActionSheetViewControl... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/BTActionSheetViewController/BTActionSheetBaseContentModel.h | //
// BTActionSheetBaseContentModel.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/9/2.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BTActionSheetConst.h"
@interface BTActionSheetBaseContentModel : NSObject
@property (nonatomic,a... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/AppWall/GJGCAppWallDataManager.h | //
// GJGCAppWallDataManager.h
// ZYChat
//
// Created by ZYVincent on 15/11/26.
// Copyright (c) 2015年 ZYProSoft. All rights reserved.
//
#import "GJGCInfoBaseListDataManager.h"
#import "GJGCAppWallParamsModel.h"
@interface GJGCAppWallDataManager : GJGCInfoBaseListDataManager
@property (nonatomic,strong)GJGCApp... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/GJGCChatInputPanel/GJGCChatInputPanelDelegate.h | //
// GJGCChatInputPanelDelegate.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-10-28.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
@class GJGCChatInputPanel;
#import "GJCFAudioModel.h"
@protocol GJGCChatInputPanelDelegate <NSObject>
@optional
/**
* 当选择扩展面板的时候会执行这个协议来通知动作类型
*
* @pa... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/Base/GJGCChatBaseCellDelegate.h | //
// GJGCChatSystemNotiCellDelegate.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-11.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
@class GJGCChatBaseCell;
@protocol GJGCChatBaseCellDelegate <NSObject>
@optional
/* ============================= 系统... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/GJGCChatInputPanel/GJGCChatInputExpandEmojiPanelPageItem.h | <reponame>AnriKaede/ZY2017IM<gh_stars>1000+
//
// GJGCChatInputExpandEmojiPanelPageItem.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-26.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface GJGCChatInputExpandEmojiPanelPageItem : UIView
@property (nonatomi... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Dependcy/GJCFAudioManager/Manager/GJCFAudioManager.h | //
// GJCFAudioManager.h
// GJCommonFoundation
//
// Created by ZYVincent QQ:1003081775 on 14-9-16.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJCFAudioPlayerDelegate.h"
#import "GJCFAudioRecordDelegate.h"
#import "GJCFAudioNetworkDelegate.h"
#import "GJCFA... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/UserList/ZYUserListContentModel.h | <filename>ZYChat-EaseMob/ZYChat/UserList/ZYUserListContentModel.h<gh_stars>1000+
//
// ZYUserListContentModel.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/6.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ZYUserListContentMod... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/UserList/ZYUserListViewController.h | //
// ZYUserListViewController.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/6.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GJGCBaseViewController.h"
@interface ZYUserListViewController : GJGCBaseViewController
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/GJGCChatInputPanel/GJGCChatInputExpandEmojiPanelGifPageItem.h | //
// GJGCChatInputExpandEmojiPanelGifPageItem.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/6/3.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <UIKit/UIKit.h>
@interface GJGCChatInputExpandEmojiPanelGifPageItem : UIView
@property (nonatomic,strong)NSString *panel... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/GroupInfoExtend/GJGCGroupInfoExtendConst.h | //
// GJGCGroupInfoExtendConst.h
// ZYChat
//
// Created by ZYVincent on 15/11/20.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
//群名字
extern const NSString *kGJGCGroupInfoExtendName;
//群等级
extern const NSString *kGJGCGroupInfoExtendCreateTime;
//群等级... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Service/Database/ZYDatabaseOperation.h | //
// ZYDatabaseOperation.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/9.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ZYDatabaseCRUDCondition.h"
#import "FMResultSet.h"
typedef void (^ZYDatabaseOperationQuerySuccessBlock) (F... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/ChatCell/GJGCChatFriendCellStyle.h | //
// GJGCChatFirendCellStyle.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-10.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface GJGCChatFriendCellStyle : NSObject
+ (NSString *)imageTag;
+ (NSDictionary *)formateSimpleTextMessage:(NSString *... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/ViewController/MessageExtend/GJGCMessageExtendMiniMessageModel.h | <filename>ZYChat-EaseMob/ZYChat/ChatDetail/ViewController/MessageExtend/GJGCMessageExtendMiniMessageModel.h
//
// GJGCMessageExtendMiniMessageModel.h
// ZYChat
//
// Created by ZYVincent on 16/6/29.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import "JSONModel.h"
@interface GJGCMessageExtendMiniMessa... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/GroupCommonUI/UITableViewCell/Cell/GJGCInformationMemeberShowCell.h | //
// GJGCInformationMemeberShowCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-6.
// Copyright (c) 2014年 ZYV. All rights reserved.
//
#import "GJGCInformationTextCell.h"
@interface GJGCInformationMemeberShowCell : GJGCInformationTextCell
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/SystemNoti/GJGCChatAuthorizAskCell.h | //
// GJGCChatAuthorizAskCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-3.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import "GJGCChatSystemNotiBaseCell.h"
#import "GJGCChatSystemNotiModel.h"
#import "GJCURoundCornerButton.h"
#import "GJGCChatSystemNotiRoleGroupView.h"
#import "... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/GJGCChatInputPanel/GJGCChatInputExpandEmojiPanel.h | //
// GJGCChatInputExpandEmojiPanel.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-10-28.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface GJGCChatInputExpandEmojiPanel : UIView
@property (nonatomic,strong)NSString *panelIdentifier;
- (void)reser... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/InfoBaseList/Cells/GJGCInfoGroupRoleContentCell.h | <filename>ZYChat-EaseMob/ZYChat/Square/InfoBaseList/Cells/GJGCInfoGroupRoleContentCell.h
//
// GJGCInfoGroupRoleContentCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/21.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "GJGCInfoRoleContentCell.h"
@interface GJG... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/InfoBaseList/Cells/GJGCInfoRoleContentCell.h | //
// GJGCInfoRoleContentCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/21.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "GJGCInfoBaseListBaseCell.h"
@interface GJGCInfoRoleContentCell : GJGCInfoBaseListBaseCell
@property (nonatomic,strong)GJGCCommonHeadVi... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/CreateGroup/GJGCCreateGroupLabelsSheetDataManager.h | //
// GJGCCreateGroupLabelsSheetDataManager.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/20.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "BTActionSheetDataManager.h"
@interface GJGCCreateGroupLabelsSheetDataManager : BTActionSheetDataManager
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/InfoBaseList/Cells/GJGCInfoUserRoleContentCell.h | //
// GJGCInfoUserRoleContentCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/21.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "GJGCInfoRoleContentCell.h"
@interface GJGCInfoUserRoleContentCell : GJGCInfoRoleContentCell
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/GroupCommonUI/UITableViewCell/Cell/GJGCInformationGroupShowItem.h | <gh_stars>1000+
//
// GJGCGroupShowItem.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-6.
// Copyright (c) 2014年 ZYV. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GJGCCommonHeadView.h"
@interface GJGCInformationGroupShowItemModel : NSObject
@property (nonatomic,strong)NSAttributedString... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Contacts/GJGCContactsHeaderView.h | //
// GJGCContactsHeaderView.h
// ZYChat
//
// Created by ZYVincent on 16/8/9.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import <UIKit/UIKit.h>
@class GJGCContactsHeaderView;
@protocol GJGCContactsHeaderViewDelegate <NSObject>
- (void)contactsHeaderViewDidTapped:(GJGCContactsHeaderView *)headerVie... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/CreateGroup/GJGCCreateGroupMemberCountSheetDataManager.h | <filename>ZYChat-EaseMob/ZYChat/Square/CreateGroup/GJGCCreateGroupMemberCountSheetDataManager.h
//
// GJGCCreateGroupMemberCountSheetDataManager.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/20.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "BTActionSheetDataMana... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/InfoBaseList/Cells/GJGCInfoBaseListBaseCell.h | //
// GJGCInfoBaseListBaseCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/21.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GJGCInfoBaseListContentModel.h"
@interface GJGCInfoBaseListBaseCell : UITableViewCell
@property (nonatomic,st... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/CreateGroup/GJGCCreateGroupContentModel.h | //
// GJGCCreateGroupContentModel.h
// ZYChat
//
// Created by ZYVincent on 15/9/21.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GJGCCreateGroupConst.h"
@interface GJGCCreateGroupContentModel : NSObject
@property (nonatomic,assign)GJGCCreat... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/GJGCChatInputPanel/GJGCChatInputPanel.h | //
// GJGCChatInputPanel.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-10-28.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GJGCChatInputBar.h"
#import "GJGCChatInputConst.h"
#import "GJGCChatInputExpandMenuPanelConfigModel.h"
#import "GJGCChatInputPanelDel... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Contacts/GJGCContactsNameCell.h | <reponame>AnriKaede/ZY2017IM
//
// GJGCContactsNameCell.h
// ZYChat
//
// Created by ZYVincent on 16/8/9.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import "GJGCContactsBaseCell.h"
@interface GJGCContactsNameCell : GJGCContactsBaseCell
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Dependcy/GJCUImageBrowser/View/GJCUImageBrowserScrollView.h | //
// GJCFImageBrowserScrollView.h
// GJCommonFoundation
//
// Created by ZYVincent QQ:1003081775 on 14-10-30.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GJCUImageBrowserItemViewController.h"
#import "GJCUAsyncImageView.h"
@interface GJCUImageBrowserScrollView : UIS... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/GroupCommonUI/UITableViewCell/Cell/GJGCInformationGroupPhotoBoxCell.h | <reponame>AnriKaede/ZY2017IM
//
// GJGCInformationGroupPhotoBoxCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-6.
// Copyright (c) 2014年 ZYV. All rights reserved.
//
#import "GJGCInformationBaseCell.h"
#import "GJGCInformationPhotoBox.h"
#import "GJGCInformationCellContentModel.h"
@interface GJ... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/MemberList/GJGCGroupMemberListDataManager.h | //
// GJGCGroupMemberListDataManager.h
// ZYChat
//
// Created by ZYVincent on 15/11/24.
// Copyright (c) 2015年 ZYProSoft. All rights reserved.
//
#import "GJGCInfoBaseListDataManager.h"
@interface GJGCGroupMemberListDataManager : GJGCInfoBaseListDataManager
@property (nonatomic,strong)NSString *groupId;
@end
|
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/GroupCommonUI/ViewController/GJGCInformationBaseViewController.h | //
// GJGCInformationBaseViewController.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-6.
// Copyright (c) 2014年 ZYV. All rights reserved.
//
#import "GJGCBaseViewController.h"
#import "GJGCInformationBaseDataSourceManager.h"
#import "GJGCInformationBaseCell.h"
#import "GJGCInformationBaseCellDelega... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/BTActionSheetViewController/BTActionSheetDataManager.h | //
// BTActionSheetDataManager.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/9/2.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BTActionSheetBaseContentModel.h"
#import "BTActionSheetConst.h"
#import "BTActionSheetBaseCell.h"
@cla... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/InfoBaseList/GJGCInfoBaseListConst.h | <reponame>AnriKaede/ZY2017IM
//
// GJGCInfoBaseListConst.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/21.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* 列表内容类型
*/
typedef NS_ENUM(NSUInteger, GJGCInfoBaseListContentType){
/*... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/View/GJGCCommonHeadView.h | //
// GJGCCommonHeadView.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-10-28.
// Copyright (c) 2014年 ZYProSoft. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef enum : NSUInteger {
GJGCCommonHeadViewTypeNone,//未定义
GJGCCommonHeadViewTypePGGroup,//群
GJGCCommonHeadViewTypeContact,//联系... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Service/RelationManager/ZYUserDatabaseManager.h | //
// ZYUserDatabaseManager.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/17.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ZYUserModel.h"
#import "ZYDatabaseManager.h"
@interface ZYUserDatabaseManager : NSObject
- (BOOL)creat... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/ChatCell/GJGCChatFriendMusicShareCell.h | //
// GJGCChatFriendMusicShareCell.h
// ZYChat
//
// Created by ZYVincent on 15/11/25.
// Copyright (c) 2015年 ZYProSoft. All rights reserved.
//
#import "GJGCChatFriendBaseCell.h"
@interface GJGCChatFriendMusicShareCell : GJGCChatFriendBaseCell
- (void)startDownloadAction;
- (void)playAudioAction;
- (void)upda... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Theme/ZYThemeUitil.h | //
// ZYThemeUitil.h
// ZYChat
//
// Created by ZYVincent on 16/12/18.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import <Foundation/Foundation.h>
#pragma mark - ThemeIconName
#define kThemeRecentNavBar @"recent_nav"
#define kThemeRecentTabBar @"recent_tab"
#define kThemeRecentListBg @"recent_list"... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/GroupCommonUI/UITableViewCell/Cell/GJGCInformationTextAndIconCell.h | //
// GJGCInformationTextAndIconCell.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 14-11-6.
// Copyright (c) 2014年 ZYV. All rights reserved.
//
#import "GJGCInformationTextCell.h"
@interface GJGCInformationTextAndIconCell : GJGCInformationTextCell
@property (nonatomic,strong)UIImageView *iconImgView;
... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/WallPaper/MJRefresh/MJRefresh.h | <filename>ZYChat-EaseMob/ZYChat/WallPaper/MJRefresh/MJRefresh.h
/**
* 代码地址: https://github.com/CoderMJLee/MJRefresh
* 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000
* 友情提示: 遇到一些小问题, 最好及时下载最新的代码试试
*/
#import "UIScroll... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Square/GroupCommonUI/PersonInformation/GJGCPersonInformationViewController.h | //
// GJGCPersonInformationViewController.h
// ZYChat
//
// Created by ZYVincent on 15/11/22.
// Copyright (c) 2015年 ZYProSoft. All rights reserved.
//
#import "GJGCInformationBaseViewController.h"
#import "GJGCMessageExtendModel.h"
@interface GJGCPersonInformationViewController : GJGCInformationBaseViewControlle... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/Service/DataCenter/ZYDataCenterRequestCondition.h | <reponame>AnriKaede/ZY2017IM
//
// ZYDataCenterRequestCondition.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/11/6.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ZYDataCenterInterface.h"
#import "ZYNetWorkConst.h"
@interface ZYDat... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/RecentChat/GJGCRecentChatViewController.h | //
// GJGCRecentChatViewController.h
// ZYChat
//
// Created by ZYVincent QQ:1003081775 on 15/7/11.
// Copyright (c) 2015年 ZYProSoft. QQ群:219357847 All rights reserved.
//
#import "GJGCBaseViewController.h"
@interface GJGCRecentChatViewController : GJGCBaseViewController
- (NSArray *)allConversationModels;
@e... |
AnriKaede/ZY2017IM | ZYChat-EaseMob/ZYChat/ChatDetail/UITableViewCell/ChatCell/GJGCChatFriendSendFlowerCell.h | //
// GJGCChatFriendSendFlowerCell.h
// ZYChat
//
// Created by ZYVincent on 16/5/15.
// Copyright © 2016年 ZYProSoft. All rights reserved.
//
#import "GJGCChatFriendBaseCell.h"
@interface GJGCChatFriendSendFlowerCell : GJGCChatFriendBaseCell
@end
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.