repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
PancakeSoftware/openHabAI | catflow/cpp/include/server/ApiSeasocksServer.h | <gh_stars>1-10
/*
* File: ApiSeasocksServer
*/
#ifndef OPENHABAI_APISEASOCKSSERVER_H
#define OPENHABAI_APISEASOCKSSERVER_H
#include <Catflow.h>
#include "ApiServer.h"
#ifdef USE_SEASOCKS
#include <seasocks/Server.h>
#include <seasocks/PrintfLogger.h>
/**
* identifier for client who send a request
*/
class Se... |
PancakeSoftware/openHabAI | catflow/cpp/include/ApiSubscribable.h | <filename>catflow/cpp/include/ApiSubscribable.h<gh_stars>1-10
/*
* File: ApiSubscribable.h
*
*/
#ifndef OPENHABAI_APISUBSCRIBABLE_H
#define OPENHABAI_APISUBSCRIBABLE_H
#include <util/Log.h>
#include <Catflow.h>
#include "ApiProcessible.h"
/**
* provides api command: 'subscribe' and 'unsubscribe'
* @warning do ... |
PancakeSoftware/openHabAI | catflow/cpp/include/Util.h | <gh_stars>1-10
/*
* File: Util
* Author: <NAME>
*
*/
#ifndef OPENHABAI_CATFLOW_UTIL_H
#define OPENHABAI_CATFLOW_UTIL_H
#include <exception>
#include <string>
class JsonObjectException: public std::exception {
private:
std::string message;
public:
explicit JsonObjectException(const std::string& mess... |
PancakeSoftware/openHabAI | catflow/cpp/include/Catflow.h | /*
* Catflow.h
*/
#ifndef CATFLOW_H
#define CATFLOW_H
#include <thread>
#include <json.hpp>
#include <util/Log.h>
#include <ApiMessage.h>
#include <queue>
#include "ApiProcessible.h"
#include <server/ApiServer.h>
#include <set>
using namespace std;
using Json = nlohmann::json;
class Catflow
{
public:
/**
... |
PancakeSoftware/openHabAI | catflow/cpp/include/server/ApiuWebsocketsServer.h | <reponame>PancakeSoftware/openHabAI<filename>catflow/cpp/include/server/ApiuWebsocketsServer.h
/*
* File: ApiSeasocksServer
*/
#ifndef OPENHABAI_APISUWEBSOCKETSSERVER_H
#define OPENHABAI_APISUWEBSOCKETSSERVER_H
#include "../Catflow.h"
#include "ApiServer.h"
#include <uWS.h>
#include <thread>
#include <boost/files... |
PancakeSoftware/openHabAI | catflow/cpp/include/JsonList.h | <reponame>PancakeSoftware/openHabAI<filename>catflow/cpp/include/JsonList.h<gh_stars>1-10
/*
* File: JsonList.h
* Author: <NAME>
*
*/
#ifndef OPENHABAI_JSONLIST_H
#define OPENHABAI_JSONLIST_H
#include <json.hpp>
#include <string>
#include <list>
#include <boost/static_assert.hpp>
#include "ApiJsonObject.h"
#inc... |
PancakeSoftware/openHabAI | catflow/cpp/include/ApiJsonObject.h | /*
* File: ApiJsonObject.h
* Author: <NAME>
*/
#ifndef OPENHABAI_APIJSONOBJECT_H
#define OPENHABAI_APIJSONOBJECT_H
#include <stdlib.h>
using namespace std;
#include <util/Log.h>
#include <json.hpp>
#include <string>
#include <list>
#include <memory>
#include <boost/any.hpp>
#include <unordered_map>
#include "A... |
PancakeSoftware/openHabAI | catflow/cpp/include/Chart.h | /*
* File: Chart.h
* Author: <NAME>
*
*/
#ifndef OPENHABAI_CHART_H
#define OPENHABAI_CHART_H
#include <util/util.h>
#include "ApiJsonObject.h"
#include "Catflow.h"
class RangeParam;
class ValueParam;
class ChartDataPoint;
class ChartDataPointSimple;
/*
* Chart class
*/
class Chart: public ApiJsonObject
{
... |
PancakeSoftware/openHabAI | catflow/cpp/include/util/Log.h | /*
* File: Log.h
* Author: <NAME>
*
*/
#ifndef OPENHABAI_LOG_H
#define OPENHABAI_LOG_H
// include
#include <iostream>
#include <string>
#include <sstream>
#include <stdlib.h>
using namespace std;
/*
* Log class
*/
class Log
{
public:
Log();
Log(string nameShort);
static void setLogLevel(cha... |
PancakeSoftware/openHabAI | trainServer/source/include/SelectorView.h | //
// Created by <NAME> on 07.06.18.
//
#ifndef OPENHABAI_SELECTORVIEW_H
#define OPENHABAI_SELECTORVIEW_H
#include <stdlib.h>
#include <ApiJsonObject.h>
using namespace std;
class SelectorView : public ApiJsonObject
{
public:
vector<string> options;
SelectorView() = default;
SelectorView(vector<str... |
PancakeSoftware/openHabAI | trainServer/source/include/ApiRoot.h | /*
* File: ApiRoot.h
* Author: <NAME>
*
*/
#ifndef APIROOT_H
#define APIROOT_H
#include <json.hpp>
#include <ApiRoute.h>
#include <dataStructures/DataStructure.h>
#include "Catflow.h"
#include "Settings.h"
using namespace std;
using Json = nlohmann::json;
class DataStructure;
/*
* ApiRoot class
* holds dat... |
PancakeSoftware/openHabAI | catflow/cpp/include/ApiRoute.h | /*
* File: ApiRoute.h
* Author: <NAME>
*
*/
#ifndef OPENHABAI_APIROUTE_H
#define OPENHABAI_APIROUTE_H
#include <json.hpp>
#include <string>
#include <list>
#include <ApiMessage.h>
#include <util/Log.h>
#include <boost/optional.hpp>
#include <JsonList.h>
#include <ApiJsonObject.h>
#include <ApiProcessible.h>
us... |
PancakeSoftware/openHabAI | catflow/cpp/include/ApiProcessible.h | <gh_stars>1-10
/*
* File: ApiProcessible.h
* Author: <NAME>
*
*/
#ifndef OPENHABAI_APIPROCESSIBLE_H
#define OPENHABAI_APIPROCESSIBLE_H
#include <json.hpp>
#include <string>
#include <list>
#include "ApiMessage.h"
#include <boost/optional.hpp>
using Json = nlohmann::json;
using namespace std;
/*
* Apiprocess... |
PancakeSoftware/openHabAI | catflow/cpp/include/util/Filesystem.h | <reponame>PancakeSoftware/openHabAI
/*
* File: Filesystem.h
* Author: <NAME>
*
*/
#ifndef FILESYSTEM_H
#define FILESYSTEM_H
#include <string>
#include <functional>
using namespace std;
/*
* Filesystem
*/
namespace Filesystem
{
bool lsFor(string path, function<void (string, bool)> onEntry); // list conten... |
PancakeSoftware/openHabAI | catflow/cpp/include/util/util.h | <reponame>PancakeSoftware/openHabAI<gh_stars>1-10
/*
* File: util.h
* Author: <NAME>
*
*/
#ifndef OPENHABAI_UTIL_H
#define OPENHABAI_UTIL_H
#include <string>
#include <vector>
#include <algorithm>
#include <JsonObject.h>
using namespace std;
inline vector<string> intersect(vector<string> &v1, vector<string> &v... |
xuanfengleiting/weChat | weChat/weChat/Classes/Model/Person.h | <filename>weChat/weChat/Classes/Model/Person.h
//
// Person.h
// weChat
//
// Created by jnl on 2018/1/8.
// Copyright © 2018年 newenergy. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Person : NSObject
@end
|
eilerstim/system-monitor | include/processor.h | <reponame>eilerstim/system-monitor
#ifndef PROCESSOR_H
#define PROCESSOR_H
#include<vector>
#include<string>
class Processor {
public:
Processor() : prevTotal(0.0), prevIdle(0.0) {};
float Utilization();
std::vector<long> toLong(std::vector<std::string> values);
private:
long prevTotal;
long pr... |
eilerstim/system-monitor | include/process.h | #ifndef PROCESS_H
#define PROCESS_H
#include <string>
#include "linux_parser.h"
/*
Basic class for Process representation
It contains relevant attributes as shown below
*/
class Process {
public:
Process (int pid);
int Pid();
std::string User();
std::string Command();
float CpuUtilization();
std::string ... |
p0lyh3dron/chik | src/modules/engine/stat.c | <filename>src/modules/engine/stat.c
/*
* stat.c -- source file for engine statistics
*
* Authored by Karl "p0lyh3dron" Kreuze on April 16, 2022.
*
* This file is part of the Chik engine.
*
* This file defines the routines for collecting and displaying
* engine statistics.
*/
#include "st... |
p0lyh3dron/chik | src/modules/gfx/abstract.h | /*
* abstract.h -- header file for declaring abstract functions
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Included here are the abstract functions used by the Chik engine.
* These functions are used to abstract the underlying g... |
p0lyh3dron/chik | src/modules/engine/engine.h | <filename>src/modules/engine/engine.h<gh_stars>1-10
/*
* engine.h -- header for engine module
*
* Authored by Karl "p0lyh3dron" Kreuze on April 16, 2022.
*
* This file is part of the Chik engine.
*
* The brain of Chik Engine resides in this module. At
* her current state, this module will... |
p0lyh3dron/chik | src/modules/engine/stat.h | /*
* stat.h -- header file for engine statistics
*
* Authored by Karl "p0lyh3dron" Kreuze on April 16, 2022.
*
* This file is part of the Chik engine.
*
* The following declares the types and functions used
* for taking engine statistics, such as the number of
* frames rendered, the s... |
p0lyh3dron/chik | src/modules/engine/engine.c | /*
* engine.c -- source for engine module
*
* Authored by Karl "p0lyh3dron" Kreuze on April 16, 2022.
*
* This file is part of the Chik engine.
*
* The brain of Chik Engine resides in this module. This
* file will define how the engine will do module handling.
*/
#include "engine.h"
#in... |
p0lyh3dron/chik | src/modules/gfx/camera.h | /*
* camera.h -- header for camera functions
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Included in the Chik engine is the camera, which is used to
* render the scene.
*/
#pragma once
#include "libchik.h"
typedef struct {
... |
p0lyh3dron/chik | src/modules/gfx/abstract.c | <reponame>p0lyh3dron/chik<filename>src/modules/gfx/abstract.c
/*
* abstract.c -- header file for declaring abstract functions
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Included here are the definitions for the abstract functions us... |
p0lyh3dron/chik | src/modules/gfx/surface.c | /*
* surface.c -- header file to interface with the draw surface
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Included here are the functions used to interface with the
* draw surface.
*/
#include "surface.h"
static chik_surface... |
p0lyh3dron/chik | src/modules/gfx/vertexasm.c | /*
* vertexasm.c -- source for the vertex assembler
*
* Authored by Karl "p0lyh3dron" Kreuze on June 12, 2022.
*
* This file is part of the Chik engine.
*
* The definitions for the vertex assembler are in here.
*/
#include "vertexasm.h"
#include "cull.h"
v_layout_t gLayout = { .aAttribs... |
p0lyh3dron/chik | src/modules/gfx/surface.h | <reponame>p0lyh3dron/chik
/*
* surface.h -- header file to interface with the draw surface
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Included here are the functions used to interface with the
* draw surface.
*/
#pragma once
#... |
p0lyh3dron/chik | src/modules/gfx/vertexasm.h | /*
* vertexasm.h -- header for the vertex assembler
*
* Authored by Karl "p0lyh3dron" Kreuze on June 12, 2022.
*
* This file is part of the Chik engine.
*
* The declarations in this file are for the vertex assembler.
* The vertex assembler is used to manage raw vertex data, such as
* ... |
p0lyh3dron/chik | src/modules/gfx/cull.h | /*
* cull.h -- header for culling/clipping routines
*
* Authored by Karl "p0lyh3dron" Kreuze on June 12, 2022.
*
* This file is part of the Chik engine.
*
* As of now, the culling routines consist of just frustum culling,
* which tests a line segment against a plane, and interpolates a ne... |
p0lyh3dron/chik | src/modules/gfx/drawable.h | <gh_stars>1-10
/*
* drawable.h -- header for general drawable functionality
*
* Authored by Karl "p0lyh3dron" Kreuze on June 7, 2022.
*
* This file is part of the Chik engine.
*
* The drawables refer to objects such as vertex buffers, textures,
* shaders, and so on. In it's primitive stat... |
p0lyh3dron/chik | src/modules/gfx/rendertarget.c | <filename>src/modules/gfx/rendertarget.c
/*
* rendertarget.c -- source for using render targets
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Here are the functions used for creating and using render targets.
*/
#include "rendertarget... |
p0lyh3dron/chik | src/modules/gfx/image.c | /*
* image.c -- source for image functionality
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* This file declares the functions used for loading and manipulating images.
*/
#include "image.h"
#include <malloc.h>
#include <string.h>
/*... |
p0lyh3dron/chik | src/modules/gfx/rendertarget.h | <gh_stars>1-10
/*
* rendertarget.h -- header for declaring render targets
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Included is functionality for creating render targets.
* Render targets are individual surfaces that can be ren... |
p0lyh3dron/chik | src/modules/gfx/camera.c | <filename>src/modules/gfx/camera.c
/*
* camera.c -- source for camera functions
*
* Authored by Karl "p0lyh3dron" Kreuze on March 25, 2022
*
* This file is part of the Chik engine.
*
* This file defines the camera functionality.
*/
#include "camera.h"
#include <math.h>
camera_t *gpCamera = ... |
p0lyh3dron/chik | src/modules/gfx/image.h | /*
* image.h -- header for declaring images
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik engine.
*
* Included is functionality for creating images to be drawn to.
*/
#pragma once
#include "libchik.h"
typedef enum {
FILE_TYPE_UNKNOWN = 0,
... |
p0lyh3dron/chik | src/modules/gfx/raster.h | <reponame>p0lyh3dron/chik
/*
* raster.h -- header for graphics rasterization stage
*
* Authored by Karl "p0lyh3dron" Kreuze on June 9, 2022
*
* This file is part of the Chik Engine.
*
* The rasterization stage is responsible for rasterizing the
* geometry into a 2D bitmap. Currently, the r... |
p0lyh3dron/chik | src/modules/gfx/cull.c | <reponame>p0lyh3dron/chik
/*
* cull.h -- header for culling/clipping routines
*
* Authored by Karl "p0lyh3dron" Kreuze on June 12, 2022.
*
* This file is part of the Chik engine.
*
* This file defines the culling/clipping routines.
*/
#include "cull.h"
#include "camera.h"
#include "vertexas... |
p0lyh3dron/chik | src/modules/gfx/raster.c | /*
* raster.c -- source for graphics rasterization stage
*
* Authored by Karl "p0lyh3dron" Kreuze on June 9, 2022
*
* This file is part of the Chik Engine.
*
* The rasterization stage is defined here.
*/
#include "raster.h"
#include "vertexasm.h"
rendertarget_t *gpRasterTarget;
/*
* Se... |
p0lyh3dron/chik | src/modules/gfx/gfx.c | <filename>src/modules/gfx/gfx.c
/*
* gfx.c -- source file for the main graphics functions.
*
* Authored by Karl "p0lyh3dron" Kreuze on March 20, 2022
*
* This file is part of the Chik Engine.
*
* This file defines the main graphics functions. These functions
* don't require a header file, a... |
p0lyh3dron/chik | src/modules/gfx/drawable.c | <reponame>p0lyh3dron/chik
/*
* drawable.c -- source for general drawable functionality
*
* Authored by Karl "p0lyh3dron" Kreuze on June 7, 2022.
*
* This file is part of the Chik engine.
*
* The usage defined here is for drawables defined in the header.
*/
#include "drawable.h"
#include "ca... |
fbucafusco/freertos_cpp_uart | src/protocol.c | <gh_stars>0
/*
Copyright 2021, <NAME>
All rights reserved.
licence: see LICENCE file
*/
#include "FreeRTOS.h"
#include "FreeRTOSConfig.h"
#include "protocol.h"
#include "semphr.h"
#include "task.h"
/* private objects */
uartMap_t uart_used;
SemaphoreHandle_t new_frame_signal;
char* buffer;
uint16_t max_... |
fbucafusco/freertos_cpp_uart | inc/protocol.h | <filename>inc/protocol.h<gh_stars>0
/*
Copyright 2021, <NAME>
All rights reserved.
licence: see LICENCE file
*/
#ifndef PROTOCOL_H_
#define PROTOCOL_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "sapi.h"
void procotol_x_init( uartMap_t uart, uint32_t baudRate );
uint16_t protocol_wait_frame( char* data, uint... |
osadalakmal/hyperscan-cpp-wrapper | hs_wrapper.h | <reponame>osadalakmal/hyperscan-cpp-wrapper<filename>hs_wrapper.h
#ifndef HS_WRAPPER_H_DEFINED
#define HS_WRAPPER_H_DEFINED
#include <hs/hs.h>
#include <memory>
#include <string>
#include <vector>
class HyperScanDatabase {
public:
typedef match_event_handler EventHandler;
enum class ScanMode {
BLOCK,
... |
eaplatanios/swift-language | include/swift/SIL/SILWitnessVisitor.h | <filename>include/swift/SIL/SILWitnessVisitor.h
//===--- SILWitnessVisitor.h - Witness method table visitor -----*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime... |
eaplatanios/swift-language | lib/SILOptimizer/Mandatory/Differentiation.h | <reponame>eaplatanios/swift-language
//===--- Differentiation.h - SIL Automatic Differentiation ----*- C++ -*---===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Ex... |
RolandWH/ccolour | example.c | /* File: example.c
Author: <NAME> (<EMAIL>)
Desc: Example file to demonstrate usage of colour.h (ccolour)
License: MIT License (../LICENSE)
*/
#include "colour.h"
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
void rainbow()
{
const char COLOURS[8][7] =
{ "BLACK", "RED", "GREEN"... |
RolandWH/ccolour | colour.h | /* File: colour.h
Author: <NAME> (<EMAIL>)
Desc: Contains function for manipulating colour on ANSI terminals
License: MIT License (../LICENSE)
*/
#pragma once
#define DEFAULT_COLOR 0
#define BLACK_FOREGROUND 30
#define RED_FOREGROUND 31
#define GREEN_FOREGROUND 32
#define YELLOW_FOREGROUND 33
#define B... |
A200K/SkypeAdBlocker | Skype AdBlocker/Utils.h | #ifndef _UTILS_H
#define _UTILS_H
#include <Windows.h>
void *DetourFunction( void *pLocation, void *pDetour, size_t ulLength );
#endif |
JosephPena1/Battle-Arena | raygame/Enemy.h | <filename>raygame/Enemy.h
#pragma once
#include "Actor.h"
class Enemy
: public Actor
{
public:
Enemy() : Actor() {};
Enemy(float x, float y, float health, float collisionRadius, const char* spriteFilePath, float maxSpeed, Actor* target);
bool detectTarget(float maxAngle, float maxDistance);
void update(float de... |
JosephPena1/Battle-Arena | raygame/Bullet.h | <reponame>JosephPena1/Battle-Arena
#pragma once
#include "Actor.h"
class Bullet : public Actor
{
public:
Bullet() : Actor() {};
Bullet(float x, float y, float collisionRadius, const char* spriteFilePath, float maxSpeed, MathLibrary::Vector2 velocity);
void update(float deltaTime) override;
void draw() override;
p... |
JosephPena1/Battle-Arena | raygame/Player.h | <reponame>JosephPena1/Battle-Arena
#pragma once
#include "Actor.h"
class Player
: public Actor
{
public:
Player() : Actor() {};
Player(float x, float y, float health, float collisionRadius, const char* spriteFilePath, float maxSpeed);
void update(float deltatime) override;
void debug() override;
void draw() ov... |
AndrewAndreev/mainarray | main.c | #include <stdio.h>
const void *ptrprintf = printf;
#pragma section(".exre", execute, read)
__declspec(allocate(".exre")) int main[] =
{
0x646C6890, 0x20680021, 0x68726F57,
0x2C6F6C6C, 0x48000068, 0x24448D65,
0x15FF5002, &ptrprintf, 0xC314C483
};
|
kajun1337/libft | ft_memcpy.c | <reponame>kajun1337/libft<filename>ft_memcpy.c
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcpy.c ... |
kajun1337/libft | ft_calloc.c | <filename>ft_calloc.c
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_calloc.c ... |
kajun1337/libft | ft_strmapi.c | <reponame>kajun1337/libft
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strmapi.c ... |
kajun1337/libft | ft_lstnew.c | <gh_stars>1-10
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: ... |
kajun1337/libft | ft_itoa.c | <gh_stars>1-10
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_itoa.c :+: ... |
kajun1337/libft | ft_memcmp.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcmp.c :+: :+: :+: ... |
kajun1337/libft | ft_strlcat.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcat.c :+: :+: :+: ... |
kajun1337/libft | ft_strtrim.c | <reponame>kajun1337/libft
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c ... |
kajun1337/libft | ft_strjoin.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: ... |
kajun1337/libft | ft_strchr.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: ... |
kajun1337/libft | libft.h | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libft.h :+: :+: :+: ... |
kajun1337/libft | ft_strdup.c | <filename>ft_strdup.c
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c ... |
kajun1337/libft | ft_split.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: ... |
kajun1337/libft | ft_memchr.c | <filename>ft_memchr.c
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c ... |
kajun1337/libft | ft_strrchr.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strrchr.c :+: :+: :+: ... |
kajun1337/libft | ft_strnstr.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnstr.c :+: :+: :+: ... |
kajun1337/libft | ft_memset.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memset.c :+: :+: :+: ... |
kajun1337/libft | ft_strdup_main.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup_main.c :+: :+: :+... |
kajun1337/libft | ft_strlcpy.c | <reponame>kajun1337/libft
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcpy.c ... |
kajun1337/libft | ft_memmove.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: ... |
kajun1337/libft | ft_substr.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_substr.c :+: :+: :+: ... |
yrq110/HouseRadar | AMapDemo/TopView.h | //
// TopView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/21.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface TopView : UIView
@property(strong,nonatomic)UIButton *returnButton;
@property(strong,nonatomic)UILabel *topLabel;
@end
|
yrq110/HouseRadar | AMapDemo/PicLoadEnableSharedClass.h | //
// PicLoadEnableSharedClass.h
// AMapDemo
//
// Created by yrq_mac on 16/2/16.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface PicLoadEnableSharedClass : NSObject
@property BOOL WWANLoadPicEnabled;
@property BOOL MobileNetLoadEnabled;
@property BOOL isWifi;
@... |
yrq110/HouseRadar | AMapDemo/ListTableViewCell.h | //
// ListTableViewCell.h
// AMapDemo
//
// Created by yrq_mac on 16/1/30.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ListTableViewCell : UITableViewCell
@property(strong,nonatomic)UILabel *titleLabel;
@property(strong,nonatomic)UILabel *cityLabel;
@property(strong,no... |
yrq110/HouseRadar | HouseEntity+CoreDataProperties.h | //
// HouseEntity+CoreDataProperties.h
// AMapDemo
//
// Created by yrq_mac on 16/3/1.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
// Choose "Create NSManagedObject Subclass…" from the Core Data editor menu
// to delete and recreate this implementation file for your updated model.
//
#import "HouseEnti... |
yrq110/HouseRadar | AMapDemo/RadarSearchToolsView.h | //
// RadarSearchToolsView.h
// AMapDemo
//
// Created by yrq_mac on 16/1/31.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface RadarSearchToolsView : UIView<UITextFieldDelegate>
@property(strong,nonatomic)UIButton *locationBtn;
@property(strong,nonatomic)UITextField *radius... |
yrq110/HouseRadar | AMapDemo/SegmentView.h | <filename>AMapDemo/SegmentView.h
//
// SegmentView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/10.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol SegmentDelegate <NSObject>
- (void)buttonClick:(NSInteger)sender;
- (void)topButtonClick:(NSString*)sender;
@end
@interf... |
yrq110/HouseRadar | HouseEntity.h | //
// HouseEntity.h
// AMapDemo
//
// Created by yrq_mac on 16/3/1.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
NS_ASSUME_NONNULL_BEGIN
@interface HouseEntity : NSManagedObject
// Insert code here to declare functionality of your managed ... |
yrq110/HouseRadar | AMapDemo/FeedBackView.h | //
// FeedBackView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/21.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
@interface FeedBackView : UIView<MFMailComposeViewControllerDelegate>
@property(strong,nonatomic)UILabel *label;
@property(strong,nonat... |
yrq110/HouseRadar | AMapDemo/ViewController.h | <reponame>yrq110/HouseRadar<filename>AMapDemo/ViewController.h
//
// ViewController.h
// AMapDemo
//
// Created by yrq_mac on 16/1/22.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <MAMapKit/MAMapKit.h>
#import <AMapSearchKit/AMapSearchKit.h>
#import "AppDelegate.h"
#import ... |
yrq110/HouseRadar | CompareEntity.h | //
// CompareEntity.h
// AMapDemo
//
// Created by yrq_mac on 16/3/1.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
NS_ASSUME_NONNULL_BEGIN
@interface CompareEntity : NSManagedObject
// Insert code here to declare functionality of your mana... |
yrq110/HouseRadar | AMapDemo/HouseListViewController.h | <reponame>yrq110/HouseRadar
//
// HouseListViewController.h
// AMapDemo
//
// Created by yrq_mac on 16/1/30.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopView.h"
@interface HouseListViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
+(id)share... |
yrq110/HouseRadar | AMapDemo/ExactSearchToolsView.h | <filename>AMapDemo/ExactSearchToolsView.h
//
// ExactSearchToolsView.h
// AMapDemo
//
// Created by yrq_mac on 16/1/31.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ExactSearchToolsView : UIView<UITextFieldDelegate>
@property(strong,nonatomic)UILabel *priceLabel;
@proper... |
yrq110/HouseRadar | AMapDemo/FavoriteView.h | //
// FavoriteView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/10.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopView.h"
@interface FavoriteView : UIView<UITableViewDataSource,UITableViewDelegate>
@property(strong,nonatomic)NSString *titleString;
@property(strong,nona... |
yrq110/HouseRadar | AMapDemo/CompareView.h | //
// CompareView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/29.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface CompareView : UIView
@property(strong,nonatomic)UILabel *priceLabel;
@property(strong,nonatomic)UILabel *xiaoquLabel;
@property(strong,nonatomic)UILabel *ty... |
yrq110/HouseRadar | AMapDemo/HouseAnnotationView.h | <reponame>yrq110/HouseRadar
//
// HouseAnnotationView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/6.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <MAMapKit/MAMapKit.h>
#import "HouseCalloutView.h"
@interface HouseAnnotationView : MAPinAnnotationView
@property (nonatomic, readonly) HouseCalloutV... |
yrq110/HouseRadar | AMapDemo/PinCallOutTappedView.h | <reponame>yrq110/HouseRadar
//
// PinCallOutTappedView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/11.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface PinCallOutTappedView : UIView
@property(strong,nonatomic)UIButton *goBtn;
@property(strong,nonatomic)UIButton *detailBt... |
yrq110/HouseRadar | AMapDemo/HouseCalloutView.h | //
// HouseCalloutView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/6.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface HouseCalloutView : UIView
@property (nonatomic, strong) UIImage *image; //商户图
@property (nonatomic, copy) NSString *title; //商户名
@property (nonatomic, c... |
yrq110/HouseRadar | AMapDemo/VersionDetailView.h | //
// VersionDetailView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/21.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopView.h"
@interface VersionDetailView : UIView
@property(strong,nonatomic)TopView *topView;
@property(strong,nonatomic)UILabel *versionNum;
@property(s... |
yrq110/HouseRadar | AMapDemo/QQButton.h | //
// QQButton.h
// QQBtn
//
// Created by MacBook on 15/6/25.
// Copyright (c) 2015年 维尼的小熊. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface QQButton : UIButton
/** 大圆脱离小圆的最大距离 */
@property (nonatomic, assign) CGFloat maxDistance;
/** 小圆 */
@property (nonatomic, strong) UIView *samllCi... |
yrq110/HouseRadar | AMapDemo/StaffView.h | <gh_stars>1-10
//
// StaffView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/29.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopView.h"
@interface StaffView : UIView
@property(strong,nonatomic)TopView *topView;
@end
|
yrq110/HouseRadar | AMapDemo/ListButtonView.h | //
// ListButtonView.h
// AMapDemo
//
// Created by yrq_mac on 16/3/2.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ListButtonView : UIView
@property(strong,nonatomic)UIScrollView *scrollView;
@end
|
yrq110/HouseRadar | AMapDemo/HouseDetailView.h | <filename>AMapDemo/HouseDetailView.h
//
// HouseDetailView.h
// AMapDemo
//
// Created by yrq_mac on 16/1/31.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopView.h"
@interface HouseDetailView : UIView<UIScrollViewDelegate>
//0-list 1-mainMap 2-collect
@property int typeIn... |
yrq110/HouseRadar | AMapDemo/SettingView.h | //
// SettingView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/10.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopView.h"
#import "SegmentView.h"
#import <MessageUI/MFMailComposeViewController.h>
@interface SettingView : UIView<UITableViewDataSource,UITableViewDelegate,... |
yrq110/HouseRadar | AMapDemo/ContactView.h | //
// ContactView.h
// AMapDemo
//
// Created by yrq_mac on 16/2/23.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopView.h"
@interface ContactView : UIView
@property(strong,nonatomic)TopView *topView;
@property(strong,nonatomic)UILabel *email;
@property(strong,nonatomic)U... |
yrq110/HouseRadar | CompareEntity+CoreDataProperties.h | //
// CompareEntity+CoreDataProperties.h
// AMapDemo
//
// Created by yrq_mac on 16/3/1.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
// Choose "Create NSManagedObject Subclass…" from the Core Data editor menu
// to delete and recreate this implementation file for your updated model.
//
#import "Compare... |
yrq110/HouseRadar | AMapDemo/TipViewController.h | <gh_stars>1-10
//
// TipViewController.h
// AMapDemo
//
// Created by yrq_mac on 16/2/24.
// Copyright © 2016年 yrq_mac. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface TipViewController : UIViewController<UIScrollViewDelegate>
@property(strong,nonatomic)UIButton *enterBtn;
@end
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.