text
stringlengths
4
6.14k
#import <Cocoa/Cocoa.h> @interface AbstractWindow : NSWindow @end
static void ngx_show_version_info(void); static ngx_int_t ngx_add_inherited_sockets(ngx_cycle_t *cycle); static ngx_int_t ngx_get_options(int argc, char *const *argv); static ngx_int_t ngx_process_options(ngx_cycle_t *cycle); static ngx_int_t ngx_save_argv(ngx_cycle_t *cycle, int argc, char *const *argv); static void *...
// // LogInScreen.h // Student Study // // Created by Pavel Gatilov on 8/3/13. // Copyright (c) 2013 Pavel Gatilov. All rights reserved. // #import <UIKit/UIKit.h> #import "DrupalServices.h" @interface LogInScreen : UIViewController <UITextFieldDelegate, DrupalServicesDelegate> @property (weak, nonatomic) IBOutl...
#include <stdio.h> #include <limits.h> #include <assert.h> #define STACK_SIZE 64 int stack[STACK_SIZE]; int top = -1; void push(int x) { if(top < STACK_SIZE-1) { stack[++top] = x; } else { puts("stack is full"); } } int pop() { int ret = INT_MIN; if( top>=0 ) { ret = stack[top--]; } else { puts("sta...
#ifndef COMMON_SCALAR_GRID_H #define COMMON_SCALAR_GRID_H #include <cereal/archives/xml.hpp> #include <iostream> #include <string> #include <openvdb/openvdb.h> #include "canary/canary.h" #include "common/metagrid.h" #include "common/primitives.h" namespace common { template<Index N1, Index N2, typename T> class Sc...
/* * light weight WS2812 lib V2.0b * * Controls WS2811/WS2812/WS2812B RGB-LEDs * Author: Tim (cpldcpu@gmail.com) * * Jan 18th, 2014 v2.0b Initial Version * Nov 29th, 2015 v2.3 Added SK6812RGBW support * * License: GNU GPL v2 (see License.txt) */ #include "light_ws2812.h" #include <avr/interrupt.h> #include <avr/io....
/** * \file * * Copyright (c) 2014 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must ...
/* * msque.hpp * Created on: 2012-8-30 * Author: qianqians * msque: */ #ifndef _MSQUE_H #define _MSQUE_H #include <functional> #include <atomic> #include "../container/detail/_hazard_ptr.h" #include "../pool/objpool.h" namespace Fossilizid { namespace container{ template <typename T, typename _Allocator ...
// // Flue.h // Flue // // Created by Juri Pakaste on 09/02/16. // Copyright © 2016 Juri Pakaste. All rights reserved. // #import <Cocoa/Cocoa.h> //! Project version number for Flue. FOUNDATION_EXPORT double FlueVersionNumber; //! Project version string for Flue. FOUNDATION_EXPORT const unsigned char FlueVersion...
// // Created by Ivan Chua on 15/4/8. // Copyright (c) 2015 MeiYou. All rights reserved. // #import <Foundation/Foundation.h> #import "LanguagesManager.h" #define IMYString(key) [[IMYLanguageManager sharedInstance] localizedStringForKey:key value:nil] @interface IMYLanguageManager : LanguagesManager @end
/* * Copyright (C) 2013 to 2014 by Felipe Lavratti * * 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 rights to use, * copy, mo...
// // NSString+Networking.h // BMNetworking // // Created by fenglh on 2017/1/20. // Copyright © 2017年 BlueMoon. All rights reserved. // #import <Foundation/Foundation.h> @interface NSString (Networking) /** Returns a lowercase NSString for md5 hash. */ - (nullable NSString *)md5String; @end
#ifndef __DETECTOR_H_INCLUDED__ #define __DETECTOR_H_INCLUDED__ #include <opencv2\core\core.hpp> #include <boost\circular_buffer.hpp> #include <opencv2\objdetect\objdetect.hpp> #include <opencv2\highgui\highgui.hpp> #include <opencv2\imgproc\imgproc.hpp> #include <opencv2\features2d\features2d.hpp> #include <opencv2\v...
#ifndef AXLIB_CARBON_H #define AXLIB_CARBON_H #include <Carbon/Carbon.h> #include <unistd.h> #include <string> #include <map> struct ax_application; struct carbon_event_handler { EventTargetRef EventTarget; EventHandlerUPP EventHandler; EventTypeSpec EventType[2]; EventHandlerRef CurHandler; }; bool ...
// // ViewController.h // CYMulitiTableDemo // // Created by sinocare on 2017/6/15. // Copyright © 2017年 Yu Cheng. All rights reserved. // #import <UIKit/UIKit.h> @interface ViewController : UIViewController @end
#ifndef GAME_H_ #define GAME_H_ #include <memory> #include <vector> #include "player_input.h" #include "player.h" #include "level_id.h" #include "object.h" #include "background.h" #include "tile.h" #include "item.h" #include "enemy.h" class Game { public: static std::unique_ptr<Game> create(); virtual ~Game() ...
#pragma once #include "data/tileSource.h" #include "labels/labelCollider.h" #include "scene/styleContext.h" #include "scene/drawRule.h" namespace Tangram { class DataLayer; class StyleBuilder; class Tile; class TileSource; struct Feature; struct Properties; struct TileData; class TileBuilder { public: TileBui...
#ifndef UNIFORM_DIS_FUNCTION_H #define UNIFORM_DIS_FUNCTION_H #include <memory> #include <vector> #include <string> #include <random> #include "Function.h" #include "Configuration.h" #include "PrototypeManager.h" #include "Random.h" #include "Individual.h" namespace adef { /** @brief UniformDisFunction generates ran...
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "NSObject.h" @class NSString; @protocol TNDROtherReasonDialogDelegate <NSObject> - (void)reportWithMessage:(NSString *)arg1; @end
#ifndef PhysicsEngine_H #define PhysicsEngine_H #include <Ogre.h> #include <btBulletDynamicsCommon.h> #include <OgreDebugDrawer.h> #include <MyMotionState.h> #include "Monster.h" #include "AudioController.h" class PhysicsEngine : public Ogre::Singleton<PhysicsEngine> { public: PhysicsEngine(Ogre::SceneManager* scene...
// // AppDelegate.h // SSWrapper // // Created by Quincy Yan on 2017/1/28. // Copyright © 2017年 Quincy Yan. All rights reserved. // #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end
/* * Generated by class-dump 3.3.4 (64 bit). * * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. */ #import "NSObject.h" @class NSEntityMapping, NSMutableArray, NSMutableDictionary, NSSQLEntity; // Not exported @interface _NSSQLEntityMigrationDescription : NSObject { NSEn...
/* ** Copyright (C) 2016-2021 Arseny Vakhrushev <arseny.vakhrushev@me.com> ** ** 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 rights *...
/****************************************************************************** The most basic example program to write a line of text in to the terminal using the USART library for pic16 mcus. Compiler: Microchip XC8 v1.12 (http://www.microchip.com/xc) IDE: Microchip MPLABX MCU: PIC16F877A Frequency: 20MHz ...
#ifndef ASCIIMAP_H #define ASCIIMAP_H #ifdef _MSC_VER #include "pstdint.h" #else #include <stdint.h> #endif class AsciiMap { char *map_;//final map int mapWidth_; int mapHeight_; public: AsciiMap(); ~AsciiMap(); char* getMap(int aMapWidth, int aMapHeight, unsigned long aAreaUid, ...
#pragma once #include "gep/gepmodule.h" #include "gep/threading/thread.h" #include "gep/threading/semaphore.h" #include "gep/container/DynamicArray.h" #include "gep/container/Queue.h" #include "gep/types.h" #include <functional> namespace gep { // forward declarations class TaskQueue; //...
// // YJInnerViewController.h // YJThief // // Created by ddn on 2017/8/9. // Copyright © 2017年 Zyj163. All rights reserved. // #import <UIKit/UIKit.h> @interface YJInnerViewController : UIViewController @end
// // NSColor+Hexadecimal.h // Ase2Clr // // Created by Ramon Poca on 22/04/14. // Copyright (c) 2014 Ramon Poca. All rights reserved. // #import <Cocoa/Cocoa.h> @interface NSColor (Hexadecimal) + (NSColor *)colorWithHexString:(NSString *)hexString; @end
int ImmediateLogout(void); int ConnectionLost(void); void QueryCarrierDropped(void); void StartHeartBeat(int recordActivity); void StopHeartBeat(void); void RecordActivity(void); void CheckInactivity(void); void HandleKeepAlive(void); void SetCharacterSetPassthrough(char enabled);
#include <assert.h> extern int a; int b; int main() { assert(a == 0); assert(b == 0); a = 1; assert(a == 1); assert(b == 0); b = 2; assert(a == 1); assert(b == 2); return 0; }
// This file was generated based on 'C:\ProgramData\Uno\Packages\UnoCore\0.13.2\Source\Uno\Collections\$.uno'. // WARNING: Changes might be lost if you edit this file directly. #ifndef __APP_UNO_COLLECTIONS_LIST1_ENUMERATOR__FUSE_ANIMATIONS_MIXER_HANDLE_F_84E891C8_H__ #define __APP_UNO_COLLECTIONS_LIST1_ENUMERATOR__FU...
/* List object interface */ /* Another generally useful object type is an list of object pointers. This is a mutable type: the list items can be changed, and items can be added or removed. Out-of-range indices or non-list objects are ignored. *** WARNING *** PyList_SetItem does not increment the new item's referenc...
#ifndef IR_rangeZone_detection_h #define IR_rangeZone_detection_h #include "Arduino.h" class IR_rangeZone_detection { public: IR_rangeZone_detection(); float irDistance(int irLedPin, int irReceivePin); float irDetect(int irLedPin, int irReceiverPin, long frequency); float getLeftDistance(); flo...
#include <stdio.h> #include <stdlib.h> #include "beespleen.h" int main() { knot start; start.x = 1; start.y = 0; knot mid1; mid1.x = 3; mid1.y = 15; knot mid2; mid2.x = 7; mid2.y = 45; knot end; end.x = 30; end.y = -150; start.prev = NULL; start.next = &mid1; mid1.prev = &start; mid1.next = &m...
//------------------------------------------------------------------- // MetaInfo Framework (MIF) // https://github.com/tdv/mif // Created: 03.2017 // Copyright (C) 2016-2021 tdv //------------------------------------------------------------------- #ifndef __MIF_APPLICATION_ID_CONFIG_H__ #define __MIF_APPLICAT...
// // Ingredient.h // Dish by.me // // Created by 전수열 on 13. 4. 2.. // Copyright (c) 2013년 Joyfl. All rights reserved. // #import <Foundation/Foundation.h> @interface Ingredient : NSObject @property (nonatomic, strong) NSString *name; @property (nonatomic, strong) NSString *amount; + (id)ingredientFromDictionar...
/* Copyright (c) 2013 Katsuma Tanaka 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 rights to use, copy, modify, merge, publish, distribut...
#ifndef __STATE_H__ #define __STATE_H__ struct Input; class NPC; class State { public: State() {} virtual ~State() {} virtual void Enter(NPC& player, const Input& input) = 0; virtual State* HandleInput(NPC& player, const Input& input) = 0; virtual State* Update(NPC& player, const Input& input) = 0; }; #end...
/* * Copyright (c) 2012, ETH Zurich. * All rights reserved. * * This file is distributed under the terms in the attached LICENSE file. * If you do not find this file, copies can be found by writing to: * ETH Zurich D-INFK, CAB F.78, Universitaetstr 6, CH-8092 Zurich. */ #ifndef __TI_TWL6030_H__ #define __TI_TWL6...
// // GMUCoreDataStackManager.h // GitMenu // // Created by Morgan Lieberthal on 1/22/16. // Copyright © 2016 J. Morgan Lieberthal. All rights reserved. // @import Cocoa; @interface GMUCoreDataStackManager : NSObject + (instancetype)sharedManager; /// Managed object model for the framework. @property(nonatomic,...
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SCRIPT_STANDARD_H #define BITCOIN_SCRIPT_STANDARD_H #include "sc...
/** * @file http_server.h * * @brief Simple HTTP server for runtime system configuration * * @author Aaron Perley (aperley@andrew.cmu.edu) */ #ifndef __http_server_h_ #define __http_server_h_ /** @brief http client connection state */ typedef struct { int fd; } http_client_conn_t; /** @brie...
/* Code generated by IfcQuery EXPRESS generator, www.ifcquery.com */ #pragma once #include <vector> #include <map> #include <sstream> #include <string> #include "ifcpp/model/GlobalDefines.h" #include "ifcpp/model/BasicTypes.h" #include "ifcpp/model/BuildingObject.h" // TYPE IfcChangeActionEnum = ENUMERATIO...
// // BLCredentialsListController.h // Blurt Mobile // // Created by Peter Iannucci on 6/24/13. // Copyright (c) 2013 Peter Iannucci. All rights reserved. // #import <UIKit/UIKit.h> #import <CoreData/CoreData.h> #import "BLDetailViewController.h" @interface BLCredentialsListController : UITableViewController <NSF...
/* * Generated by class-dump 3.3.4 (64 bit). * * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. */ #import <Foundation/NSString.h> @interface NSString (NSDecimalExtension) - (CDStruct_5fe7aead)decimalValue; @end
// // AppDelegate.h // NewsDemo // // Created by Tsz on 15/11/21. // Copyright © 2015年 Tsz. All rights reserved. // #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end
//****************************************************************************** // IRremote // Version 2.0.1 June, 2015 // Copyright 2009 Ken Shirriff // For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.html // // Modified by Paul Stoffregen <paul@pjrc.com> to support other boards and t...
// // EPChooseDeviceController.h // Elephrame // // Created by Jennifer on 7/15/14. // Copyright (c) 2014 Folse. All rights reserved. // #import "FSTableViewController.h" @interface EPChooseDeviceController : FSTableViewController @end
/* * Generated by class-dump 3.3.4 (64 bit). * * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. */ #import <UIKit/UIStatusBarItemView.h> // Not exported @interface UIStatusBarThermalColorItemView : UIStatusBarItemView { int _thermalColor; _Bool _sunlightMode; } - (id...
// // Created by per on 23.03.18. // #ifndef DEEPRTS_ADDUNIT_H #define DEEPRTS_ADDUNIT_H #include "StateChange.h" class Game; class AddUnit: StateChange{ int id; int type; int player_id; AddUnit(int id, int type, int player_id): id(id), type(type), player_id(player_id){} void apply(Game *game...
#ifndef _PARLIST_H_A582D4E6_E956_4290_997F_692458C8FAC6_ #define _PARLIST_H_A582D4E6_E956_4290_997F_692458C8FAC6_ #include "lodbc.h" typedef struct par_data{ union{ struct{ SQLPOINTER buf; SQLULEN bufsize; } strval; lua_Number numval; char ...
// // TAASGoogleResponse.h // TAAS-proxy // // Created by Marshall Rose on 6/31/14. // Copyright (c) 2014 The Thing System. All rights reserved. // #import "HTTPDataResponse.h" @interface TAASGoogleResponse : HTTPDataResponse - (id)initWithPath:(NSString *)path; @end
#ifndef __WIN32_LINK_H__ #define __WIN32_LINK_H__ #endif
#include <stdio.h> #include "common.h" #define ASIZE 1024 #define STEP 128 #define ITERS 4 float arrA[ASIZE]; float arrB[ASIZE]; __attribute__ ((noinline)) float loop(int zero) { int i, iters; float t1; for(iters=zero; iters < ITERS; iters+=1) { for(i=zero; i < ASIZE; i+=1) { arrA[i]=arrA[i]...
#include "interrupts.h" void treat_undef(void) { klog("Bad Exception handled: UNDEF!\n", 30, RED); while (1) {} } void treat_unused(void) { klog("Bad Exception handled: UNUSED!\n", 31, RED); while (1) {} } void treat_fiq(void) { klog("Bad Exception handled: FIQ!\n", 28, RED); while (1) {} } ...
// // LinkedList.h // iDB // // Created by Aaron Hayman on 6/28/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import <Foundation/Foundation.h> @class FlxLinkListIterator; @interface FlxLinkedList : NSObject <NSFastEnumeration, NSCopying> @property NSUInteger count; @property (nonatomic, readon...
#include <stdint.h> #include "error.h" #include "strobe.h" #include "chip_reset.h" tcvr_error_t RESET_strobe_reset(uint8_t *status) { return STROBE_command_strobe(SRES, status); }
#ifndef CLIENTMODEL_H #define CLIENTMODEL_H #include <QObject> class OptionsModel; class AddressTableModel; class TransactionTableModel; class CWallet; QT_BEGIN_NAMESPACE class QDateTime; class QTimer; QT_END_NAMESPACE enum BlockSource { BLOCK_SOURCE_NONE, BLOCK_SOURCE_REINDEX, BLOCK_SOURCE_DISK, BL...
/* Open Asset Import Library (assimp) ---------------------------------------------------------------------- Copyright (c) 2006-2012, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the fol...
# /* ******************************************************************** # * * # * (C) Copyright Paul Mensonides 2003-2005. * # * * # * Distributed unde...
// // NSString+GUID.h // FishLamp // // Created by Mike Fullerton on 6/3/11. // Copyright (c) 2013 GreenTongue Software LLC, Mike Fullerton. // The FishLamp Framework is released under the MIT License: http://fishlamp.com/license // #import "FLCocoaRequired.h" #import "FishLampCore.h" @interface NSString (GUID)...
#ifndef DBPROPHYSICSMASTER_EFFECTOR_WIND_H #define DBPROPHYSICSMASTER_EFFECTOR_WIND_H class Effector_Wind : public Effector { public: Effector_Wind(int id); virtual ~Effector_Wind(){}; virtual bool canHandleParticles(){return true;} virtual bool canHandleCloth(){return true;} virtual bool canHandleRagdoll(){re...
#ifndef MODEL_COLLECTION_CHAINITERATOR_H #define MODEL_COLLECTION_CHAINITERATOR_H #include <iostream> #include "chainelement.h" #include "../../Model/Node/abstractnode.h" using namespace Model::Node; using namespace std; namespace Model { namespace Collection { template <typename T> class ...
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. Eigen itself is part of the KDE project. // // Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr> // // Eigen is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // Licens...
/* --COPYRIGHT--,BSD_EX * Copyright (c) 2012, Texas Instruments Incorporated * 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...
/* * ev.c * * Created on: Jan 14, 2015 * Author: elisescu */ #include "ev.h" #include <stdlib.h> #ifndef _WIN32 #include <sys/select.h> #else #include <winsock2.h> #endif #include <errno.h> // PRIVATE DECLARATIONS enum { IO_PENDING_ADD, IO_PENDING_REMOVE }; typedef struct list { struct list *...
// Copyright (c) 2011-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef SYSCOIN_QT_PSBTOPERATIONSDIALOG_H #define SYSCOIN_QT_PSBTOPERATIONSDIALOG_H #include <QDialog> #include <psbt.h> #i...
// // NSObject+Utility.h // CodingForiPad // // Created by zwm on 15/7/25. // Copyright (c) 2015年 coding. All rights reserved. // #import <Foundation/Foundation.h> @class CODataResponse; @interface NSObject (Utility) - (BOOL)checkDataResponse:(CODataResponse *)response; - (void)showAlert:(NSString *)title messa...
// // HokutosaiTwitterViewController.h // Hokutosai // // Created by Shuka Takakuma on 2014/04/04. // Copyright (c) 2014年 Shuka Takakuma. All rights reserved. // #import <UIKit/UIKit.h> @interface HokutosaiTwitterViewController : UIViewController @end
#include "../framework.h" static const char *name = "who"; static const char *opt = "--who"; static const char *usage = " --who" " Show who is logged in\n" " (username, tty, from, login_time)\n"; static mod_info_t info[] = { {"username"}, {"tty"}, {"from...
#ifndef tests_h #define tests_h void list_tests(void); void vector_tests(void); void scanner_tests(void); void env_tests(void); void sb_tests(void); #endif
#ifdef __OBJC__ #import <UIKit/UIKit.h> #else #ifndef FOUNDATION_EXPORT #if defined(__cplusplus) #define FOUNDATION_EXPORT extern "C" #else #define FOUNDATION_EXPORT extern #endif #endif #endif FOUNDATION_EXPORT double Pods_HelloBerwin_TestsVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_HelloBerwin_TestsVe...
// // AppDelegate.h // Example // // Created by Wu Kong on 8/6/16. // Copyright © 2016 wukong. All rights reserved. // #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end
#pragma once #include "..\stklib\OfficeASE.h" class NetAseEx : public OfficeASE { protected: int m_Type; int m_Icon; TCHAR m_Name[32]; public: // Link information int LinkTo[10]; int LinkType[10]; int LinkCount; // Class for link condition class LinkCondition { public: int LinkFrom; int LinkTo; i...
#import <UIKit/UIKit.h> #import <CoreLocation/CoreLocation.h> #import "CDZTracker.h" @interface CDZTrackerViewController : UITableViewController @property (nonatomic, strong) CDZTracker *tracker; // Designated initializer - (id)init; // called by somebody when the given location has been posted to the server - (voi...
// To check if a library is compiled with CocoaPods you // can use the `COCOAPODS` macro definition which is // defined in the xcconfigs so it is available in // headers also when they are imported in the client // project. // EstimoteSDK #define COCOAPODS_POD_AVAILABLE_EstimoteSDK #define COCOAPODS_VERSION_MAJOR_Es...
/* * File: Task_ObjectFollowing.h * Author: Jianing Chen * * Created on 04 November 2014, 21:37 */ #ifndef TASK_OBJECTFOLLOWING_H #define TASK_OBJECTFOLLOWING_H #include <el.h> #define TASK_OBJECT_RED 0 #define TASK_OBJECT_GREEN 1 #define TASK_OBJECT_BLUE 2 extern el_uint8 Task_ObjectColor; extern ...
/**************************************************************************** ** ** Copyright (C) 2015 Intel Corporation. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtNetwork module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid comm...
#pragma once #include "CM5/ListCtrlEx.h" #include "afxcmn.h" #include "afxdtctl.h" // CBacnetProgramDebug dialog class CBacnetProgramDebug : public CDialogEx { DECLARE_DYNAMIC(CBacnetProgramDebug) public: CBacnetProgramDebug(CWnd* pParent = NULL); // standard constructor virtual ~CBacnetProgramDebug(); // Dial...
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */ /* * * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. */ #include "mpiimpl.h" /* -- Begin Profiling Symbol Block for routine MPI_Bsend_init */ #if defined(HAVE_PRAGMA_WEAK) #pragma weak MPI_Bsend_init = PMPI_B...
#ifndef ESCENA_H #define ESCENA_H #include <iostream> #include <vector> #include "objeto3D.h" class Escena { public: Escena(); ~Escena(); void Abrir(char* path); void Dibujar(); int getNumObjetos(); std::vector<Objeto3D> objetos; }; #endif // ESCENA_H
#ifndef INFO_MANAGER_H #define INFO_MANAGER_H #include <QObject> #include <Info/cpu_info.h> #include <Info/disk_info.h> #include <Info/memory_info.h> #include <Info/network_info.h> #include <Info/system_info.h> #include <Info/process_info.h> #include <Utils/format_util.h> class InfoManager { public: static Info...
// This file was generated based on 'C:\ProgramData\Uno\Packages\Fuse.Elements\0.11.3\Internal\$.uno'. // WARNING: Changes might be lost if you edit this file directly. #ifndef __APP_FUSE_INTERNAL_I_IMAGE_CONTAINER_OWNER_H__ #define __APP_FUSE_INTERNAL_I_IMAGE_CONTAINER_OWNER_H__ #include <app/Uno.Object.h> #include ...
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "UIButton.h" #import "FriendAsistSessionExt.h" @class CPushContact, NSString; @interface MMSayHelloButton : UIButton <FriendAsistSessionExt> { CPushContact *m_oLastVe...
/* :ts=4 * $VER: retroScreenToBitmap.c $Revision$ (27-Mar-2019) * * This file is part of retromode. * * Copyright (c) 2019 LiveForIt Software. * MIT License. * * $Id$ * * $Log$ * * */ #include <exec/exec.h> #include <proto/exec.h> #include <dos/dos.h> #include <exec/types.h> #include <libraries/retro...
/* Dokan : user-mode file system library for Windows Copyright (C) 2008 Hiroki Asakawa info@dokan-dev.net http://dokan-dev.net/en This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either...
#include "bliss.h" // We map 16-bits values onto the histogram static const int HISTOGRAM_SIZE = 32769; // Number of passes in histogram smoothing static const int N_PASSES = 300; // Limits of the integral on the histogram static const int INTEGRAL_INF = 0; static const int INTEGRAL_SUP = 2000; float bl_amplitude_so...
// // XMNShareView.h // XMNShareMenuExample // // Created by XMFraker on 16/1/25. // Copyright © 2016年 XMFraker. All rights reserved. // #import <UIKit/UIKit.h> typedef void(^XMNSelectedBlock)(NSUInteger tag,NSString *title); @interface XMNShareView : UIView /** * shareContentView的头部view 默认nil */ @property (...
#import <UIKit/UIKit.h> FOUNDATION_EXPORT double ScanTouchVersionNumber; FOUNDATION_EXPORT const unsigned char ScanTouchVersionString[];
#ifndef ILOGGER_H #define ILOGGER_H #include <string> namespace Drivers { class ILogger { public: virtual void log(std::string out) = 0; virtual void log(std::string out, std::string info) = 0; }; } #endif
// // YYIViewController.h // DYSHelpers // // Created by 丁玉松 on 07/30/2015. // Copyright (c) 2015 丁玉松. All rights reserved. // @import UIKit; @interface YYIViewController : UIViewController @end
#include "misc.h" #include <stdint.h> /* CONVENTIONS: All data structures for stacks have the prefix */ /* "stk_" to prevent name conflicts. */ /* */ /* Function names: Each word in a function name begins with */ /* ...
#ifndef __IPYKERNEL_PROFILE_H__ #define __IPYKERNEL_PROFILE_H__ typedef struct Profile { char* ip; char* transport; int iopub_port; int shell_port; int control_port; int stdin_port; int hb_port; char* key; char* signature_scheme; } Profile; void init_profile(Profile* profile, const...
/************************************************************************** * * \file * * \brief Management of the USB host mass-storage task. * * This file manages the USB host mass-storage task. * * Copyright (c) 2014 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * R...
/** * @file * @author Denise Ratasich * @date 14.10.2013 * * @brief Header file of sampling methods. */ #ifndef __ESTIMATION_SAMPLING_H__ #define __ESTIMATION_SAMPLING_H__ #include <Eigen/Dense> using namespace Eigen; namespace probability { /** * @brief Samples a random vector with normal distribution. ...
#ifndef LOFILE_H #define LOFILE_H #include "types.h" namespace Overlay { static const int Attack = 0; static const int Damage = 1; static const int Special = 2; static const int Land = 3; static const int Liftoff = 4; static const int Shields = 5; } class LoFile { public: static L...
#pragma once #include "Field.h" #include "Particle.h" class MagneticField: public Field { double _force; public: /////////////////////////////////////////////////////////////////// // // /////////////////////////////////////////////////////////////////// MagneticField(int id); //////////////////////////////...
/* * Generated by class-dump 3.3.4 (64 bit). * * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. */ #import "DYAnalyzerFinding.h" @interface DYAnalyzerFinding (GPUDYAnalyzerFindingAdditions) @property(readonly, nonatomic) BOOL isRedundantOrInefficientState; @property(readonly,...
// // LCDComputerSystemCh2ViewController.h // LHiOSAccumulatesInObjectiveC // // Created by lihui on 2017/6/25. // Copyright © 2017年 Lihux. All rights reserved. // #import "LCViewController.h" @interface LCDComputerSystemCh2ViewController : LCViewController @end
#include "rbuv_timer.h" VALUE cRbuvTimer; struct rbuv_timer_s { uv_timer_t *uv_handle; VALUE cb_on_close; VALUE cb_on_timeout; }; typedef struct rbuv_timer_s rbuv_timer_t; static VALUE rbuv_timer_alloc(VALUE klass); static void rbuv_timer_mark(rbuv_timer_t *rbuv_timer); static void rbuv_timer_free(rbuv_timer_t...