text
stringlengths
4
6.14k
#ifndef SYNTAX_H_ #define SYNTAX_H_ /*----------------------------------------------------------------------*\ syntax \*----------------------------------------------------------------------*/ /* IMPORTS */ #include "types.h" #include "memory.h" /* CONSTANTS */ /* TYPES */ /* DATA */ extern SyntaxEntry *stxs;...
/* $Xorg: StCols.c,v 1.3 2000/08/17 19:44:56 cpqbld Exp $ */ /* * Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc. * All Rights Reserved * * This file is a component of an X Window System-specific implementation * of Xcms based on the TekColor Color Management System. Permission is * h...
//#define NUM 10 #define SUM (3*NUM) #define NX 1 #define NY (2*NUM) int x=0; int y=0; #include "seq_inv.h" void * t1() { for(int i =0; i<NUM; i++) { int t; t = read_y4(); write_y(t + 1); } write_x(1); } void * t2() { int t; while (read_xo() != 1) {} t = read_yo(); for(int i =0; i<NUM; i...
#ifndef _HAXWELL_H_ #define _HAXWELL_H_ #include "HAXWell_Utils.h" namespace HAXWell { typedef void* ShaderHandle; typedef void* BufferHandle; typedef void* TimerHandle; typedef void* FenceHandle; typedef unsigned int timer_t; struct ShaderArgs { size_t nDispatchThreadCount; ...
/* Copyright 2013-2017 Matt Tytel * * helm is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * helm is distributed in the hope t...
/* * twtw-graphicscache-maemo.c * TwentyTwenty * * Copyright 2008 Pauli Olavi Ojala. All rights reserved. * */ /* This file is part of TwentyTwenty. TwentyTwenty is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Fre...
//------------------------------------------------------------------------------ // // This file is part of AnandamideAPI Script // // copyright: (c) 2010 - 2016 // author: Alexey Egorov (FadeToBlack aka EvilSpirit) // mailto: anandamide@mail.ru // anandamide.script@gmail.com // // AnandamideAPI is free ...
/* * window___.h * * Created on: 2012-8-7 * Author: zzzzzzzzzzz */ #ifndef WINDOW____H_ #define WINDOW____H_ #include <map> #include "view___.h" #include "container___.h" class window_flag___ { public: GtkWindowType wt_; bool is_app_paintable_; window_flag___() { wt_ = GTK_WINDOW_TOPLEVEL; is_app_p...
/* Solucao para o problema "Número de Envelopes" da OBI 2009 por: Igor Ribeiro de Assis */ #include <stdio.h> #include <string.h> /* memset() */ #define MAXK 1010 int qtd[MAXK]; int main() { int N, K, menor; int i, x; scanf("%d%d", &N, &K); /* conta quantos rótulos de cada tipo Aldo tem */ memset...
/* ** CONIO.H ** Low level console functions ** ** (c) 1997, SOLID MSX C * * * SDCC port 2015 * Uses BIOS only. Very basis, small code. * */ extern char getch (); /* read char from console */ extern char getche (); /* read and display char from console */ extern void putch (char c); /* display char */ ...
#pragma once #include "afx.h" #include "Geometry.h" namespace OldGraphElement { #include "../CommonFiles/GraphElement.h" } class GraphElement : public OldGraphElement::GraphElement { public: GraphElement(Color color = Color::White) : OldGraphElement::GraphElement(color) {} virtual void paintPerspective(Graphics &g...
// // Generated by the J2ObjC translator. DO NOT EDIT! // source: android/libcore/luni/src/main/java/java/util/concurrent/atomic/AtomicReferenceFieldUpdater.java // // Created by tball on 11/23/13. // #ifndef _JavaUtilConcurrentAtomicAtomicReferenceFieldUpdater_H_ #define _JavaUtilConcurrentAtomicAtomicReferenceFi...
#include <stdio.h> #include <stdlib.h> /*Ejemplo de condicionales*/ int main() { int n,v; printf("Ingrese un numero.\n"); scanf("%d", &n); /* Si n sea igual a cero, le asigno 1 a la variable V e imprimo. En cualquier otro caso, le asigno 0 a V e imprimo. */ v = n==0 ? 1 : 0; prin...
#ifndef __VEGA_RENDER_GRAPH_VIEW__ #define __VEGA_RENDER_GRAPH_VIEW__ #include "common.h" #include "../data/volume.h" #include "../common/model_view_controller.h" namespace vega { namespace render { class graph_view : public mvc::i_view { public: graph_view() : myRenderFlag(false), myPrimitiveIsLine(true...
/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance wit...
/* * Copyright (C) 2011-2012 DarkCore <http://www.darkpeninsula.eu/> * Copyright (C) 2011-2012 Project SkyFire <http://www.projectskyfire.org/> * Copyright (C) 2008-2012 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2012 MaNGOS <http://getmangos.com/> * * This program is free software; you can re...
#include "MEM.h" static void dump_buffer(unsigned char *buf, int size) { int i; for (i = 0; i < size; i++) { printf("%02x ", buf[i]); if (i % 16 == 15) { printf("\n"); } } printf("\n"); } static void fill_buffer(unsigned char *buf, int size) { ...
/******************************************************************************* * * 2009-2010 Nico Schottelius (nico-ceofhack at schottelius.org) * * This file is part of ceofhack. * ceofhack is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as publis...
/*! \file Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from U.S. Dept. of Energy) All rights reserved. The source code is distributed under BSD license, see the file License.txt at the top-level director...
/* Copyright 2011, 2012 David Malcolm <dmalcolm@redhat.com> Copyright 2011, 2012 Red Hat, Inc. This is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your o...
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import <Foundation/Foundation.h> @class NSError, WAVideoPreviewViewController; @protocol WAVideoPreviewViewControllerDelegate <NSObject> - (void)videoPreviewViewControllerDidCanc...
/** * @file * * @brief Endgame utils module. * * @par endgame_utils.c * <tt> * This file is part of the reversi program * http://github.com/rcrr/reversi * </tt> * @author Roberto Corradini mailto:rob_corradini@yahoo.it * @copyright 2021 Roberto Corradini. All rights reserved. * * @par License * <tt> * Th...
/* SQUID - A C function library for biological sequence analysis * Copyright (C) 1992-1996 Sean R. Eddy * * This source code is distributed under terms of the * GNU General Public License. See the files COPYING * and GNULICENSE for further details. * */ /* msf.c * SRE, Sun Jul 11 16:17:32 1993 * ...
#include "header.h" #include "log.h" #include <time.h> void LogDateTime() { time_t t = time(NULL); struct tm tm = *localtime(&t); printf("%04d/%02d/%02d %02d:%02d:%02d ", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec); } void LogText(char* message) { printf("%s\n"); } void LogMe...
/****************************************************************************** * * (C) Copyright 2007 * Panda Xiong, yaxi1984@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Fo...
/* pal.c */ /* OBI2004 */ /* Ulisses */ #include <stdio.h> #define NMAX 2002 #define INF NMAX*NMAX char str[NMAX], pal[NMAX][NMAX]; int n, partes[NMAX]; int main(void) { int i, j, menor, val, teste = 1; while (scanf("%d", &n)==1 && n) { scanf(" %s", str); memset(pal, 0, sizeof(pal)); for (i=0; i<...
#pragma once #include "MCLTProxy.h" #include <io/inputs/InputManagerBase.h> template <typename data_type> class MCLTInputProxy : public MCLTProxy<data_type>, public InputManagerBase<data_type> { using InputManagerBase<data_type>::channels; using InputManagerBase<data_type>::frames; using MCLTProxy<data_type>::...
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class JNIlearn_JNIMath */ #ifndef _Included_JNIlearn_JNIMath #define _Included_JNIlearn_JNIMath #ifdef __cplusplus extern "C" { #endif /* * Class: JNIlearn_JNIMath * Method: jiecheng * Signature: (I)I */ JNIEX...
/* This file is part of DxTer. DxTer is a prototype using the Design by Transformation (DxT) approach to program generation. Copyright (C) 2015, The University of Texas and Bryan Marker DxTer is free software: you can redistribute it and/or modify it under the terms of the GNU General Public Lice...
/*# ######################## Presentation and License ########################## **# # **# Development started in 3/2016 by: # **# Regis Moura Dantas <dantas.regis.m@gmail.com> ...
#include <mcf5282.h> #include "config.h" #include "network/udp.h" #include "dect.h" #include "dect-server.h" static void dect_serv_recv_lapc(struct msg_lapc_data *pkt, uint16 len) { int i, j; mbc_inst_t *mbc; uint8 *pdata, plen; pdata = (uint8 *)pkt + sizeof(struct msg_lapc_data); plen = len - sizeof(struct ...
/* This file is part of bbflash. Copyright (C) 2013, Hao Liu and Robert L. Thompson This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any late...
#ifndef BASIC_AUTHENTICATION_H__ #define BASIC_AUTHENTICATION_H__ #include "AbstractAuthentication.h" namespace Interceptor::Authentication { class BasicAuthentication : public AbstractAuthentication { public: BasicAuthentication(AuthenticationCPtr config); virtual ~BasicAuthentication() = default; ...
#include <prool.h> #include <conf.c> #include "kernel.h" void vec (int argc,char far *argv[]) {int i; if (argc==2) { i=htoi(argv[1]); OutIntVector(i); return; } else { More=2; NLine=1; for (i=0;i<256;i++) if (OutIntVector(i)==EOF) break; puts(""); More=0; NLine=1; } } ...
/************************************************************************** This file is part of Minimalist Casio Assembler (MCA). MCA is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version ...
#ifndef IMPROVEDPT_H #define IMPROVEDPT_H #include "Common.h" #include "GrowthFunction.h" #include "MonteCarlo.h" #include "PowerSpectrum.h" #include "Spline.h" #include "array.h" /****************************************************************************** * ImprovedPT * * Improved redshift-space PT prediction...
#ifndef GLUTEN_GLUTEN_H #define GLUTEN_GLUTEN_H #ifndef AMALGAMATION #include "config.h" #include "Widget.h" #include "Container.h" #include "Anchor.h" #include "Position.h" #include "Form.h" #include "Button.h" #include "Label.h" #include "Image.h" #include "Font.h" #include "Event.h" #include...
/////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2013, Industrial Light & Magic, a division of Lucas // Digital Ltd. LLC and Weta Digital Ltd // // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitte...
/************************************************************************************ ** ** ** mcHF QRP Transceiver ** ** K Atanassov - M0NKA 2014 ...
/* * mpatrol * A library for controlling and tracing dynamic memory allocations. * Copyright (C) 1997-2008 Graeme S. Roy <graemeroy@users.sourceforge.net> * * 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 F...
/****************************************************************************** * * Copyright (C) 2009-2012 Broadcom Corporation * * This program is the proprietary software of Broadcom Corporation and/or its * licensors, and may only be used, duplicated, modified or distributed * pursuant to the terms and co...
#ifndef DTWCLUST_UNDIRECTEDGRAPH_HPP_ #define DTWCLUST_UNDIRECTEDGRAPH_HPP_ #include <cstddef> // std::size_t #include <functional> // std::unary_function #include <memory> #include <unordered_map> #include <vector> namespace dtwclust { class UndirectedGraph { public: UndirectedGraph(const unsigned int max_size)...
//================================= // include guard #ifndef __MOVINGPLANE_H_INCLUDED__ #define __MOVINGPLANE_H_INCLUDED__ #include "cube.h" #include "Delay.h" #include "LinkedList.h" #include "plane.h" void movingPlane(int, int = 350); #endif
/* ** ** The C code is generated by ATS/Anairiats ** The compilation time is: 2011-10-15: 19h:52m ** */ /* include some .h files */ #ifndef _ATS_HEADER_NONE #include "ats_config.h" #include "ats_basics.h" #include "ats_types.h" #include "ats_exception.h" #include "ats_memory.h" #endif /* _ATS_HEADER_NONE */ /* prolog...
#ifndef INCLUDED_volk_32f_accumulator_s32f_a16_H #define INCLUDED_volk_32f_accumulator_s32f_a16_H #include <volk/volk_common.h> #include <inttypes.h> #include <stdio.h> #ifdef LV_HAVE_SSE #include <xmmintrin.h> /*! \brief Accumulates the values in the input buffer \param result The accumulated result \param inp...
#include "../../../../../src/webchannel/signalhandler_p.h"
#pragma once #include "../NIF/utils/Object3d.h" #include <memory> struct IntersectResult; struct AABB { Vector3 min; Vector3 max; AABB() {} AABB(const Vector3& newMin, const Vector3& newMax); AABB(Vector3* points, int nPoints); AABB(Vector3* points, ushort* indices, int nPoints); void AddBoxToMesh(std::ve...
/* * linux/fs/binfmt_script.c * * Copyright (C) 1996 Martin von L?wis * original #!-checking implemented by tytso. */ #include <linux/module.h> #include <linux/string.h> #include <linux/stat.h> #include <linux/malloc.h> #include <linux/binfmts.h> static int do_load_script(struct linux_binprm *bprm,struct pt_...
/* Episodic Notes: A personal wiki, note taking app for Mac OSX. Create notes through any application on your computer and keep them in one place. Copyright (C) 2014. Dante Bortone This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publi...
// MediaHandler.h: Base class for media handlers // // Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either versio...
// // GTMNSColor+Luminance.h // // Copyright 2009 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); you may not // use this file except in compliance with the License. You may obtain a copy // of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless requi...
/** * This header is generated by class-dump-z 0.2-0. * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. * * Source: /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication */ #import <Foundation/NSObject.h> @class NSMapTable, VMUSymbolicator, NSMutableSet, NSHashTable; @int...
#ifndef __ASM_MACH_LOONGSON64_IRQ_H_ #define __ASM_MACH_LOONGSON64_IRQ_H_ #include <boot_param.h> #ifdef CONFIG_CPU_LOONGSON3 /* cpu core interrupt numbers */ #define MIPS_CPU_IRQ_BASE 56 #define LOONGSON_UART_IRQ (MIPS_CPU_IRQ_BASE + 2) /* UART */ #define LOONGSON_HT1_IRQ (MIPS_CPU_IRQ_BASE + 3) /* HT1 */ #de...
// Copyright (c) 2005 - 2015 Settlers Freaks (sf-team at siedler25.org) // // This file is part of Return To The Roots. // // Return To The Roots is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either ...
/* FS_IOC_FIEMAP ioctl infrastructure. Some portions copyright (C) 2007 Cluster File Systems, Inc Authors: Mark Fasheh <mfasheh@suse.com> Kalpak Shah <kalpak.shah@sun.com> Andreas Dilger <adilger@sun.com>. */ /* Copy from kernel, modified to respect GNU code style by Jie Liu. */ #ifnde...
// // virtualgpiopin.h // // Circle - A C++ bare metal environment for Raspberry Pi // Copyright (C) 2016 R. Stange <rsta2@o2online.de> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, ei...
#ifndef NODESANDATTACHMENTSGRAFICEELEMENTS_H #define NODESANDATTACHMENTSGRAFICEELEMENTS_H // /* This file is part of project pdb. pdb is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 ...
#pragma once #include "../monitor/monitor.h" #include <common/memory.h> #include <boost/property_tree/ptree_fwd.hpp> #include <boost/thread/future.hpp> namespace caspar { namespace core { class port : public monitor::observable { port(const port&); port& operator=(const port&); public: // Static Members // C...
#import "MGLVectorSource.h" NS_ASSUME_NONNULL_BEGIN namespace mbgl { namespace style { class VectorSource; } } @interface MGLVectorSource (Private) - (instancetype)initWithRawSource:(mbgl::style::VectorSource *)rawSource; @end NS_ASSUME_NONNULL_END
#ifndef base_common_h #define base_common_h #include "cholmod.h" #include <string> #include <ostream> #include <iostream> #include "base_tools.h" /* ============================================== * Class base_common * * This class in a wraper for cholmod_common. * Since cholmod_start(&c) must be the first call t...
/** * || ____ _ __ * +------+ / __ )(_) /_______________ _____ ___ * | 0xBC | / __ / / __/ ___/ ___/ __ `/_ / / _ \ * +------+ / /_/ / / /_/ /__/ / / /_/ / / /_/ __/ * || || /_____/_/\__/\___/_/ \__,_/ /___/\___/ * * Crazyflie control firmware * * Copyright (C) 2012-2019 Bi...
//---------------------------------------------------------------------------- // XC program; finite element analysis code // for structural analysis and design. // // Copyright (C) Luis Claudio Pérez Tato // // This program derives from OpenSees <http://opensees.berkeley.edu> // developed by the «Pacific earthq...
#pragma once #ifndef __SERVER_H__ #define __SERVER_H__ void ser_Send(int index, void * data, int len); int ser_Start(); #endif
#ifndef IMAGE_MANIPULATOR_H #define IMAGE_MANIPULATOR_H #include <SDL2/SDL_endian.h> #include "utils/image_typedefs.h" #if SDL_BYTEORDER == SDL_BIG_ENDIAN static const Uint8 Rshift = 24; static const Uint8 Gshift = 16; static const Uint8 Bshift = 8; static const Uint8 Ashift = 0; #else static const Uint8 Rshift = 0;...
#ifndef VieportBufferStretch_h #define VieportBufferStretch_h #include "ViewportBufferAction.h" class QRect; namespace Isis { /** * @author ????-??-?? Unknown * * @internal */ class ViewportBufferStretch : public ViewportBufferAction { public: ViewportBufferStretch(); ~ViewportBufferS...
// -*- mode: C++; c-basic-offset: 4 -*- // Copyright (C) 2011-2012 Joerg Faschingbauer // This library 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 version 2.1 of // the License, or (at yo...
// Copyright (C) 2005 - 2021 Settlers Freaks (sf-team at siedler25.org) // // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include <sstream> #include <string> #include <vector> inline std::vector<std::string> explode(std::string const& line, const char delim, const unsigned max = 0xFFFFFFFF) { std::is...
#pragma once #include "NDArray.h" #include "Index.h" #include <vector> #include <numeric> #include <cassert> #include <iostream> int32_t maxAbsElement(const std::vector<int32_t>& r); std::vector<int32_t> diff(const std::vector<uint32_t>& x, const std::vector<uint32_t>& y); std::vector<double> diff(const std::vecto...
/* DPX/Cineon shader by Loadus ( http://www.loadusfx.net/virtualdub/DPX.fx ) Version 1.0 Ported to SweetFX by CeeJay.dk Version 1.1 Improved performance */ static const float3x3 RGB = float3x3 ( 2.67147117265996,-1.26723605786241,-0.410995602172227, -1.02510702934664,1.98409116241089,0.0439502493584124, 0.061000945...
#ifndef StartingTreeSimulator_H #define StartingTreeSimulator_H #include <vector> #include <set> namespace RevBayesCore { class Clade; class Taxon; class TopologyNode; class Tree; /** * This class represents the writer object of character data objects into files in Fasta format. * * This class...
#include <errno.h> #include <ftw.h> int ftw(const char* path, int (*fn)(const char*, const struct stat*, int), int fd_limit) { return ENOSYS; } int nftw(const char* path, int (*fn)(const char*, const struct stat*, int, struct FTW*), int fd_limit, int flags) { return ENOSYS; }
/* * This file is part of Cleanflight. * * Cleanflight is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cleanflight is distr...
/** * Marlin 3D Printer Firmware * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] * * Based on Sprinter and grbl. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General...
/************************************************************************** * * Copyright 2007 VMware, Inc. * All Rights Reserved. * * 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 w...
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "rh4n.h" #include "rh4n_utils.h" #include "rh4n_nat.h" #include "rh4n_nat_varhandling.h" int rh4nnatStringHandler(RH4nNatVarHandleParms *args) { int strlength = 0, varlibret = 0, nniret = 0; char *tmpbuff = NULL; if(args->desc->dimension...
#ifndef INFOPISTE_H #define INFOPISTE_H #include <QString> #include <QApplication> #include "lecteur.h" #include "conversion.h" class InfoPiste { public: InfoPiste(const QString _chemin="", const qint64 _finPiste=0, const int _frequence=0, const int _debit=0); //Nom et chemin void cheminPiste(QString val...
#ifndef WHITENOISEGENERATOR_H #define WHITENOISEGENERATOR_H #include "generator.h" namespace BoostDSP { namespace Generators { class WhiteNoiseGenerator : public Generator { public: WhiteNoiseGenerator(); bool initialize(); bool compute(); }; ...
/* * include/acpi/rsdp.h * Copyright (C) 2016-2017 Alexei Frolov * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version...
/** * \file * * Copyright (c) 2014-2015 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 ...
//Rabsg - Real time Strategy game // Copyright (C) 2013 Thomas Kamps anubis1@linux-ecke.de // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3 of the License, or // (at yo...
#pragma region Copyright (c) 2014-2016 OpenRCT2 Developers /***************************************************************************** * OpenRCT2, an open source clone of Roller Coaster Tycoon 2. * * OpenRCT2 is the work of many authors, a full list can be found in contributors.md * For more information, visit h...
/********************************************************** * Version $Id$ *********************************************************/ /////////////////////////////////////////////////////////// // // // SAGA // // ...
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); private slots: void on_pushButton_clicked(); void on_actionHakk_nda_triggered(...
/* Categories of Unicode characters. Copyright (C) 2002, 2006-2007, 2009-2014 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2002. 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 t...
#ifndef MODELVAR_H_ #define MODELVAR_H_ #include "ModelAbsVar.h" class ModelVar : public ModelAbsVar { public: ModelVar(); virtual ~ModelVar(); void setValue(double value_); }; #endif /* MODELVAR_H_ */
/* * Copyright (c) 2008 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the *...
/* * basetransform.h * * Created on: Jun 30, 2015 * Author: root */ #ifndef SRC_CORE_JET_BASETRANSFORM_H_ #define SRC_CORE_JET_BASETRANSFORM_H_ #include <jet/jet.h> #include <jet/element.h> struct jbasetransform_s { jelement_t parent; }; struct jbasetransform_class_s { jelement_class_t parent; ...
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it ...
/** * health.c * This will hold the functionality for health it will * contain the query_has_health, query_health, * receive_damage, receive_healing, do_tick, and some * other things which should be encapsulated in this * function and execu...
/* Copyright (c) 2014-2019 AscEmu Team <http://www.ascemu.org> This file is released under the MIT license. See README-MIT for more information. */ #pragma once #include <cstdint> #include "ManagedPacket.h" #include "WorldPacket.h" namespace AscEmu::Packets { class CmsgDestroyItem : public ManagedPacket { ...
#include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <string.h> #include <math.h> #include <GL/glew.h> #include <GL/glx.h> #include <GL/glu.h> #include "c3dlas/c3dlas.h" #include "utilities.h" #include "shader.h" #include "texture.h" #include "renderer.h" static void render_DrawArraysInstanced...
/* * Summary: interface for the memory allocator * Description: provides interfaces for the memory allocator, * including debugging capabilities. * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __DEBUG_MEMORY_ALLOC__ #define __DEBUG_MEMORY_ALLOC__ /** * DEBUG_M...
/**************************************************************** * * * Copyright 2003, 2011 Fidelity Information Services, Inc * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * * under a license. If you do not know the terms of * *...
/** * @brief Static driver, test case for Bug #123, test try counter exceeded limit * * @file xabackend_s-tryfail.c */ /* ----------------------------------------------------------------------------- * Enduro/X Middleware Platform for Distributed Transaction Processing * Copyright (C) 2009-2016, ATR Baltic, Ltd. ...
/* * Generated by util/mkerr.pl DO NOT EDIT * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution...
#ifndef UNSUBSCRIBE_CONTEXT_AVAILABILITY_REQUEST_H #define UNSUBSCRIBE_CONTEXT_AVAILABILITY_REQUEST_H /* * * Copyright 2013 Telefonica Investigacion y Desarrollo, S.A.U * * This file is part of Orion Context Broker. * * Orion Context Broker is free software: you can redistribute it and/or * modify it under the terms o...
/**************************************************************** * * * Copyright 2001, 2011 Fidelity Information Services, Inc * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * * under a license. If you do not know the terms of * *...
#include "f2c.h" #include "blaswrap.h" doublereal dzasum_(integer *n, doublecomplex *zx, integer *incx) { /* System generated locals */ integer i__1; doublereal ret_val; /* Local variables */ integer i__, ix; doublereal stemp; extern doublereal dcabs1_(doublecomplex *); /* ...
/* Copyright © 2001-2014, Canal TP and/or its affiliates. All rights reserved. This file is part of Navitia, the software to build cool stuff with public transport. Hope you'll enjoy and contribute to this project, powered by Canal TP (www.canaltp.fr). Help us simplify mobility and open public transport: ...
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/> // Copyright (C) 2010 Winch Gate Property Limited // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version ...