text
stringlengths
4
6.14k
#ifndef LINUX_ABORT_WITH_PAYLOAD_H #define LINUX_ABORT_WITH_PAYLOAD_H long sys_abort_with_payload(unsigned int reason_namespace, unsigned long long reason_code, void *payload, unsigned int payload_size, const char *reason_string, unsigned long long reason_flags); #endif // LINUX_ABORT_WITH_PAYLOAD_H
#ifndef AD_LOGIC_SwirlBullets_H #define AD_LOGIC_SwirlBullets_H #include "ad/Components.h" namespace ad { namespace Logic { class SwirlBullets : public ad::Comps::LogicComponent { public: SwirlBullets(std::map<std::string, ad::Component*> Requires); void Update(); int speed; protected...
/* use ATT protocol opcodes from bluez/src/shared/att-types.h */ #include "att-types.h" int att_read(int fd, uint16_t handle, void *buf); int att_write(int fd, uint16_t handle, const void *buf, int length); int att_wrreq(int fd, uint16_t handle, const void *buf, int length); int att_read_not(int fd, uint16_t *handle, ...
/* * Copyright (c) 2010 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ #include "opal_config.h" #include <stdlib.h> #include <string.h> #include "opal/constants.h" ...
/* * This file is part of the libsigrok project. * * Copyright (C) 2013, 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz> * * 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 ...
#pragma once #include "TitleUnit.h" class CTitleFile { public: CTitleFile(void); ~CTitleFile(void); static BOOL IsLineEnd(PBUF_READ pReadData); static void StepOffset(PBUF_READ pReadData); static BOOL ReadSubTitleByLine(PBUF_READ pReadData, PTITLE_UNIT pUnit); static void StepSpaceChar(PBUF_READ pReadDa...
#include "vogl.h" static long px = -1, py = -1, pxs = -1, pys = -1; /* * prefposition * * Specify a prefered position for a window that is * under control of a window manager. * Position is the location of the upper left corner. * Should be called before ginit. */ void prefposition(long int x1, long int x2, l...
/* Phaethon - A FLOSS resource explorer for BioWare's Aurora engine games * * Phaethon is the legal property of its developers, whose names * can be found in the AUTHORS file distributed with this source * distribution. * * Phaethon is free software; you can redistribute it and/or * modify it under the terms of ...
/**************************************************************************** * Copyright (C) 2010 * by Dimok * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any * damages arising from the use of this software. * * Permission is ...
/* -*- c++ -*- */ /* * Copyright 2013 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio 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, or (at your option...
#include <stdlib.h> #include <stdio.h> #include <string.h> #include "search-sort.h" int binary_search_int(const int64_t arr[], int start, int end, int64_t key) { int mid; while(start <= end) { mid = start + (end - start) / 2; if(arr[mid] < key) start = mid + 1; else i...
#include <msp430.h> #include "wdt.h" #include "common/hal/lcd_segments.h" #include "common/svc/svc.h" uint8_t wdt_event=0; void wdt_init(void) { WDTCTL = WDT_ADLY_250; SFRIE1 |= WDTIE; } void __attribute__((interrupt ((WDT_VECTOR)))) WDTServiceRoutine(void) { SFRIFG1 &= ~WDTIFG; wdt_event = 1; LPM3_EXIT; }
//--------------------------------------------------------------------------- #ifndef SplashFormH #define SplashFormH //--------------------------------------------------------------------------- #include <Classes.hpp> #include <Controls.hpp> #include <StdCtrls.hpp> #include <Forms.hpp> #include <ExtCtrls.hpp...
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #ifndef _lista_simples_h #define _lista_simples_h /*A implementacao utiliza um noh cabeca apontando * para o primeiro elemento da lista */ // Define um ponteiro void para dados genericos typedef void* gpointer; // Definicao estrutura lista typedef struct n...
#ifndef LZH_SOCKET_SERVER #define LZH_SOCKET_SERVER #define MAXUDP_GRAM (65536) #define LISTEN_PORT (5409) #define PROTO_HTTP (0) #define PROTO_MQTT (1) #define PROTO_ENDE (2) typedef struct tagLoadParams { unsigned long maxThread; unsigned long maxTimeOut; unsigned long protoType; unsigned char* loa...
/* Copyright 2007-2010,2016 IPB, Universite de Bordeaux, INRIA & CNRS ** ** This file is part of the Scotch software package for static mapping, ** graph partitioning and sparse matrix ordering. ** ** This software is governed by the CeCILL-C license under French law ** and abiding by the rules of distribution of free ...
/***************************************************************************** * Copyright 2015-2020 Alexander Barthel alex@littlenavmap.org * * 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, eit...
/* sentence.hh * author: Johan Carlberger * last change: 2000-04-27 * comments: Sentence class */ #ifndef _sentence_hh #define _sentence_hh #include "wordtoken.h" // these should be in Sentence: const int MAX_SENTENCE_LENGTH = 150; // can be set arbitrarily class Sentence; class GramError; class Tagger; c...
#ifndef TEMPERATUREDATA_H #define TEMPERATUREDATA_H #include "Data/healthdata.h" class TemperatureData : public HealthData { public: explicit TemperatureData(); explicit TemperatureData(float temperature); explicit TemperatureData(HealthData data, float temperature); // Accessors float temperatur...
/* xoreos - A reimplementation of BioWare's Aurora engine * * xoreos is the legal property of its developers, whose names * can be found in the AUTHORS file distributed with this source * distribution. * * xoreos is free software; you can redistribute it and/or * modify it under the terms of the GNU General Publ...
/***************************************************************************** * Copyright (C) 2014 Visualink * * Authors: Adrien Maglo <adrien@visualink.io> * * This file is part of Pastec. * * Pastec is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public ...
size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream) /* Used by curl */ { struct curlfile *out=(struct curlfile *)stream; if(out && !out->stream) { out->stream=fopen(out->filename, "wb"); if(!out->stream) return -1; } return fwrite(buffer, size, nmemb, out->stream); } int in_arr...
extern const int MAX; void insert(char); void del(); void display(); // Definition of struct struct queue { int front; int rear; char queue[5]; };
/* https://cirosantilli.com/linux-kernel-module-cheat#ring0 */ #include <linux/module.h> #include <linux/kernel.h> #include <lkmc/ring0.h> static int myinit(void) { #if defined(__x86_64__) || defined(__i386__) LkmcRing0Regs ring0_regs; lkmc_ring0_get_control_regs(&ring0_regs); pr_info("cr0 = 0x%8.8llX\n", (unsign...
/* * Object space definition. */ #ifndef objectspace_h #define objectspace_h #include <InterViews/stub.h> class Catalog; class Messenger; class ObjectTable; class SpaceManager; class ObjectSpace : public ObjectStub { public: ObjectSpace(const char*); ~ObjectSpace(); void StartServer(Connection* local...
/* * Beautiful Capi generates beautiful C API wrappers for your C++ classes * Copyright (C) 2015 Petr Petrovich Petrov * * This file is part of Beautiful Capi. * * Beautiful Capi is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the ...
/* * 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. * * This program is distributed in the hope that it will be use...
/* =========================================================================== Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company. This file is part of Spearmint Source Code. Spearmint Source Code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licens...
#ifndef STORAGE_H #define STORAGE_H #include <QThread> #include <QMutex> struct point; template <typename T> class QVector; class storage : public QThread { Q_OBJECT public: storage(QObject *parent = 0); const QVector<point>* data() const; double glowDuration() const; protected: void run(); ...
/* * Copyright 2012 Philippe Latulippe * https://github.com/philippelatulippe/rdbreader Project Faolan a Simple and Free Server Emulator for Age of Conan. Copyright (C) 2009, 2010, 2011, 2012 The Project Faolan Team This program is free software: you can redistribute it and/or modify it under the terms of t...
#ifndef SETUP_WLD_SCENE_H #define SETUP_WLD_SCENE_H #include <vector> #include <graphics/gl_color.h> class IniProcessing; struct WorldAdditionalImage { std::string imgFile; bool animated; int frames; int framedelay; int x; int y; }; struct WorldMapSetup { void init(IniProcessing &engine_...
using namespace std; struct _Course{ string CourseCode; int Point; int Score; _Course(string CourseCode){ this->CourseCode = CourseCode; this->Score = 0; this->Point = 0; } void setCourse(string CourseCode, int Score, int Point){ this->CourseCode = CourseCode; ...
/* Copyright 2010-2015 Tarik Sekmen. All Rights Reserved. Written by Tarik Sekmen <tarik@ilixi.org>. This file is part of ilixi. ilixi 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 versi...
/*-----------------------------------------------------------------------*/ /* Low level disk I/O module skeleton for Petit FatFs (C)ChaN, 2010 */ /*-----------------------------------------------------------------------*/ #include "diskio.h" #include <string.h> #include <LUFA/Drivers/USB/Class/MassStorag...
/* Buff to buff example - Test program for the lzlib library Copyright (C) 2010, 2011, 2012, 2013 Antonio Diaz Diaz. This program is free software: you have unlimited permission to copy, distribute and modify it. Usage is: bbexample filename This program is an example of how buffer-to-buff...
/* Copyright &copy; 2018, Stefan Sicklinger, Munich * * All rights reserved. * * This file is part of STACCATO. * * STACCATO 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 Licens...
#ifndef LEDSET_H #define LEDSET_H #include <QHash> #include "constants.h" #include "LedSetIterator.h" #include "Led.h" namespace AnimatorModel { class Animation; class LedSet : public QObject { Q_OBJECT public : explicit LedSet(QObject *parent); void addLed(Led& led); void removeLed(Led& led); ...
// -*-c++-*- #ifndef _TSYSERROR_H_ #define _TSYSERROR_H_ #include <TNamed.h> #include <Rtypes.h> class TList; class TGraphErrors; class TSysError : public TNamed { public: enum EType { kNone = 0, kMean, kMinStdDev, kRelativeErrorMCSum, kAbsoluteDevFromRef, kMaxValueFromBin, kMaxValueFromBinPercent, kStdDev...
#ifndef _DEV_SETUP_H_ #define _DEV_SETUP_H_ #include<stdlib.h> #include<stdio.h> #include<unistd.h> #include<sys/wait.h> #define exe_length 10 #define ip_route "10.0.0.0/24" int run_ip_set(char *arg[]); int set_up_dev(char *dev); #endif /*_DEV_SETUP_H_*/
/* * 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...
/* * VS_RendererPretty.h * VectorStorm * * Created by Trevor Powell on 17/03/07. * Copyright 2007 PanicKitten Softworks. All rights reserved. * */ #include "VS_RendererSimple.h" class vsRendererPretty : public vsRendererSimple { typedef vsRendererSimple Parent; unsigned int m_offscreenTexture; public: ...
/* RPG Paper Maker Copyright (C) 2017-2021 Wano RPG Paper Maker engine is under proprietary license. This source code is also copyrighted. Use Commercial edition for commercial use of your games. See RPG Paper Maker EULA here: http://rpg-paper-maker.com/index.php/eula. */ #ifndef PROJECTU...
// Copyright (C) 2013 Simon Que // // This file is part of DuinoCube. // // DuinoCube 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 3 of the License, or // (at your option) any later ...
#include "test.h" #include "schnaps.h" #include<stdio.h> #include <stdlib.h> #include <assert.h> #include <math.h> #include <string.h> int TestDtfield_CL(void); int main(void) { int resu = TestDtfield_CL(); if (resu) printf("Dtfield_CL test OK !\n"); else printf("Dtfield_CL test failed !\n"); retu...
/* This file is part of Darling. Copyright (C) 2020 Lubos Dolezel Darling 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. Darling i...
/* @@@LICENSE * * Copyright (c) 2012 Simon Busch <morphis@gravedo.de> * * 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 required by app...
/** ****************************************************************************** * @file : usbd_desc.c * @version : v2.0_Cube * @brief : Header for usbd_conf.c file. ****************************************************************************** * This notice applies to any ...
#ifndef PLOTCONTROLWIDGETWRAPPER_H #define PLOTCONTROLWIDGETWRAPPER_H #include "controlWidgets/plotcontrolwidget.h" #include "controlwrappers/controlwidgetwrapper.h" class PlotControlWidgetWrapper: public ControlWidgetWrapper { Q_OBJECT public: PlotControlWidgetWrapper(QWidget *parent=0); ~PlotControlWid...
/* * File: exceptions.h * Author: ben * * Created on 23 agosto 2009, 15.42 */ #ifndef _EXCEPTIONS_H #define _EXCEPTIONS_H #include <stdexcept> #include <string> class BasicException : public std::exception { std::string message; public: BasicException() = default; BasicException(const char * _mess) : m...
/***************************************************************************** * * PROJECT: Multi Theft Auto v1.0 * LICENSE: See LICENSE in the top level directory * FILE: mods/deathmatch/logic/packets/CUnoccupiedVehicleStartSyncPacket.h * PURPOSE: Unoccupied vehicle start synchronization pa...
// // Created by bruce on 27/04/20. // #include "../fs.h" int sys_chdir(struct proc* who, char* pathname){ int ret = OK; inode_t *inode = NULL, *curr_working; if((ret = get_inode_by_path(who, pathname, &inode))) return ret; if(!inode) return EEXIST; if(!(S_ISDIR(inode->i_mode)))...
/* * \file cp15.h * * \brief CP15 related function prototypes * * This file contains the API prototypes for configuring CP15 */ /* * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ */ /* * Redistribution and use in source and binary forms, with or without * modification, are permitt...
// -*- c++ -*- /* * Copyright 2012, 2013 The GalSim developers: * https://github.com/GalSim-developers * * This file is part of GalSim: The modular galaxy image simulation toolkit. * * GalSim is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as publish...
#pragma once #include <bgfx/bgfx.h> #include <content/StaticLevelMesh.h> namespace BgfxUtils { /** * @brief Initializes the given StaticLevelMeshes vertex- and index-buffers */ template<typename V, typename I> void finalizeStaticLevelMesh(LevelMesh::StaticLevelMesh<V, I>& msh) { msh.m_VertexBufferHandle = bg...
#pragma once #include <pthread.h> #include <sstream> #include <palmapper/Config.h> #include <palmapper/GenomeMaps.h> #include <palmapper/JunctionMap.h> #include <palmapper/VariantMap.h> #include <map> #include <set> class Mapper ; class GenomeMaps ; class QPalma ; struct HIT; typedef struct alignment_t { double qpa...
/* * This file is part of OpenStopMotion by Patrick Fedick * * $Author$ * $Revision$ * $Date$ * $Id$ * * * Copyright (c) 2013 Patrick Fedick <patrick@pfp.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...
//************************************************************************************************************ // Defenders of Mankind: A 3D space shoot'em up game. // Copyright (C) 2011 David Entrena, David Rodríguez, Gorka Suárez, Roberto Jiménez // // This program is free software: you can redistribute it and/or m...
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "struct.h" #include "access.h" #include "util.h" #include "search.h" void aux_comptage(node* nd, int* counter){ //cas simple, on à trouvé un mot. if( prefix_has_epsilon(nd)){ //on augmente le compteur (*counter)++; } int i; //s...
// Copyright (C) 2015 Francis Bergin #include "includes.h" //***************************************************************************** // // Function : eth_generate_header // Description : generarete ethernet header, contain destination and source MAC // address, // ethernet type. // //***************************...
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" * found in "../support/s1ap-r16.1.0/36413-g10.asn" * `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps` */ #ifndef _S1AP_BearerType_H_ #define _S1AP_BearerType_H_ #include <asn_application.h> /* Includ...
// Copyright (c) 2002,2011 Utrecht University (The Netherlands). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // 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 (...
//{{NO_DEPENDENCIES}} // Microsoft Developer Studio generated include file. // Used by svchost.rc // #define IDR_SYS 102 // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 107 #define _APS_NEXT_COMMAND_VAL...
/* * Copyright (C) 2010-2011 * "Mu Lei" known as "NalaGinrut" <NalaGinrut@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 Foundation, either version 3 of the License, or * (at you...
#ifndef INCLUDE_DBCREADER_H #define INCLUDE_DBCREADER_H /* dbcreader.h -- declarations for libcandbc Copyright (C) 2007-2017 Andreas Heitmann 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 Soft...
/************************************** *FILE :main.c *PROJECT :eps *AUTHOR :707wk *CREATED :5/19/2013 ***************************************/ #include <stdio.h> #include <string.h> #include <stdlib.h> void clearpri() //调整光标 { system("busybox clear"); } void init(int num) //记录初始化 { ...
#ifndef _Discriminant_Pattern_Categories_h_ #define _Discriminant_Pattern_Categories_h_ /* Discriminant_Pattern_Categories.h * * Copyright (C) 2004-2011 David Weenink * * 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 * t...
#ifndef MAVLINK_CPP_MSG_GPS2_RTK_H #define MAVLINK_CPP_MSG_GPS2_RTK_H #include "../message.h" namespace mavlink { namespace msg { const uint8_t gps2_rtk_id = 128; const uint8_t gps2_rtk_length = 35; const uint8_t gps2_rtk_crc = 226; class gps2_rtk : public mavlink::message { public: ...
// micro-C example 8 -- loop 20 million times // PASSES void main() { int i; i = 20000000; while (i) { i = i - 1; } print 999999; } void start() { main(); }
/******************************************************************************/ * Moose3D is a game development framework. * * Copyright 2006-2013 Anssi Gröhn / entity at iki dot fi. * * This file is part of Moose3D. * * Moose3D is free software: you can redistribute it and/or modify * it under the terms of th...
/* * This file is part of Luma3DS * Copyright (C) 2016-2020 Aurora Wright, TuxSH * * 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 opti...
#include <stdio.h> #include "thash.h" #include<stdlib.h> // As chaves dos valores a serem armazenados #define CHAVE1 "abcd" #define CHAVE2 "xyz2" #define CHAVE3 "3qwert" // Tamanho default da tabela #define CAPACIDADE 5 // Funcao para converter os dados armazenados em strings char* mostra(void * p) { return (ch...
/** Copyright (c) 2011 Mellanox Technologies. All rights reserved. $COPYRIGHT$ Additional copyrights may follow $HEADER$ */ #ifndef MCA_COLL_FCA_DEBUG_H #define MCA_COLL_FCA_DEBUG_H #pragma GCC system_header #ifdef __BASE_FILE__ #define __FCA_FILE__ __BASE_FILE__ #else #define __FCA_FILE__ __FILE__ #endif ...
/* * ArtTreeKS: Finite dimensional kinematic synthesis for articulated trees * Copyright(C) 2010-2012 Edgar Simo-Serra <esimo@iri.upc.edu> * License: see synthesis.h */ #include "mapmask.h" #include <string.h> #include <malloc.h> #include <stdlib.h> static void* memdup( const void *base, size_t size ) { void...
#pragma once #include <cstdlib> //NULL #include <string> class Base { public: Base() { } ; virtual ~Base() { } ; virtual bool execute() = 0; virtual std::string getExecutable() = 0; };
#ifndef TEXTFACTORY_GLOBAL_H #define TEXTFACTORY_GLOBAL_H #include <QtCore/qglobal.h> #if defined(TEXTFACTORY_LIBRARY) # define TEXTFACTORYSHARED_EXPORT Q_DECL_EXPORT #else # define TEXTFACTORYSHARED_EXPORT Q_DECL_IMPORT #endif #endif // TEXTFACTORY_GLOBAL_H
#ifndef BIRD_H #define BIRD_H #include <gameitem.h> #include <QPixmap> #include <QGraphicsScene> #include <QTimer> #define BIRD_DENSITY 10.0f #define BIRD_FRICTION 0.2f #define BIRD_RESTITUTION 0.5f class enemy : public GameItem { public: enemy(float x, float y, float radius, QTimer *timer, QPixma...
#ifndef BASELINETIMEPLANEIMAGER_H #define BASELINETIMEPLANEIMAGER_H #include <complex> #include <AOFlagger/msio/image2d.h> template<typename NumType> class BaselineTimePlaneImager { public: void Image(NumType uTimesLambda, NumType vTimesLambda, NumType wTimesLambda, NumType lowestFrequency, NumType frequencyStep,...
#include <stdio.h> #define MAXLINE 1000 int getlinee(char line[], int max); int stringdex(char source[], char searchfor[]); char pattern[] = "ould"; main() { char line[MAXLINE]; int found = 0; while (getlinee(line, MAXLINE) > 0) if ( strindex(line, pattern) >= 0) { printf("%s", line...
#pragma once #include "GLObject.h" #include "GLContext.h" #include "MessageList.h" class GLPrintf { public: static QString requiredVersion() { return "#version 430"; } static QString preamble(); const char *bufferBindingName() const { return "_printfBuffer"; } const GLObject &bufferObject() const { r...
/* * JsNameAddrObjectFactory.h * * Created on: Jul 9, 2013 * Author: dcampbell */ #ifndef JSNAMEADDROBJECTFACTORY_H_ #define JSNAMEADDROBJECTFACTORY_H_ #include "JsObjectFactory.h" #include <resip/stack/SipMessage.hxx> #include "JsProxyBase.h" namespace jessip { class JsNameAddrObjectFactory : public jes...
#ifndef __BASEGE_MATRIX4_H__ #define __BASEGE_MATRIX4_H__ ////////////////////////////////////////////////////////////////////////////// // // MATRIX4.H // // Copyright © 2006, Rehno Lindeque. All rights reserved. // ////////////////////////////////////////////////////////////////////////////// /* ...
#pragma once /// Game loop #include <Re\Game\Effect\EffectLambda.h> #include <Re\Game\State\GameStateLambda.h> /// Bt #include <Re\Ai\BehaviourTree\Leaf\BtLeafLambda.h> #include <Re\Ai\BehaviourTree\Decorator\BtDecoratorLambda.h>
///////////// Copyright � 2008, Goldeneye: Source. All rights reserved. ///////////// // // File: ge_player_shared.h // Description: // see ge_player_shared.cpp // // Created On: 23 Feb 08, 17:20 // Created By: Jonathan White <killermonkey> ////////////////////////////////////////////////////////////////////////...
/* Unix SMB/CIFS implementation. SMB torture tester - header file Copyright (C) Andrew Tridgell 1997-1998 Copyright (C) Jeremy Allison 2009 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 ...
// This file is part of FIREwork // // FIREwork 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. // // FIREwork is distributed in th...
/* * EventAddPlayer.h * * Created on: 4 sept. 2010 * Author: fred */ #ifndef EIN_EVENT_PRIMARY_ACTION_END_H_ #define EIN_EVENT_PRIMARY_ACTION_END_H_ #include <einheri/common/Event.h> #include <einheri/common/Player.h> namespace ein { class EventVisitor; class EventPrimaryActionEnd : public Event{ public...
// RUN: %clang_cc1 -O1 -triple x86_64-none-linux-gnu -emit-llvm -debug-info-kind=line-tables-only %s -o - | FileCheck %s --check-prefix=CHECK --check-prefix=LIFETIME // We shouldn't have markers at -O0 or with msan. // RUN: %clang_cc1 -O0 -triple x86_64-none-linux-gnu -emit-llvm -debug-info-kind=line-tables-only %s -o...
/* Brain Rarely Accepts Incoherent Nonsense (BRAIN) Copyright 2012-2013 Joshua Hawcroft This file is part of BRAIN. BRAIN 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...
/* This file is part of visgeom. visgeom 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. visgeom is distributed in the hope that it will be...
/* * Copyright 2012 Red Hat Inc. * * 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, d...
/* Multiple versions of strspn. PowerPC64 version. Copyright (C) 2016 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C 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 Soft...
#ifndef SENSEAREA_GLOBAL_H #define SENSEAREA_GLOBAL_H #include <QtCore/qglobal.h> #if defined(SENSEAREA_LIBRARY) # define SENSEAREASHARED_EXPORT Q_DECL_EXPORT #else # define SENSEAREASHARED_EXPORT Q_DECL_IMPORT #endif #endif // SENSEAREA_GLOBAL_H
/* This file is part of GNUnet. (C) 2009, 2011, 2012 Christian Grothoff (and other contributing authors) GNUnet 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, or (at yo...
/****************************************************************************** * ninjastorms - shuriken operating system * * * * Copyright (C) 2013 - 2016 Andreas Grapentin et al. *...
/* This file is part of rflpc. * * rflpc 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. * * rflpc is distributed in the hope th...
/* * Generated by asn1c-0.9.28 (http://lionet.info/asn1c) * From ASN.1 module "ACSE-1" * found in "../../../dumpvdl2.asn1/atn-b1_ulcs.asn1" * `asn1c -fcompound-names -fincludes-quoted -gen-PER` */ #include "ACSE-apdu.h" static asn_per_constraints_t asn_PER_type_ACSE_apdu_constr_1 GCC_NOTUSED = { { APC_CONSTRA...
/***************************************************************************** * desc_0a.h: ISO/IEC 13818-1 Descriptor 0x0A (ISO-639 language descriptor) ***************************************************************************** * Copyright (C) 2009-2010 VideoLAN * * Authors: Christophe Massiot <massiot@via.ecp...
/***************************************************************************** * * IIDCoacam.h -- header for IEE1394/IIDC camera API * * Copyright 2013,2014,2015,2016,2017,2018,2019 * James Fidell (james@openastroproject.org) * * License: * * This file is part of the Open Astro Project. * * The Open Astr...
#include <iostream> #include <fstream> #include <sstream> #include <vector> #include <cstring> #include <algorithm> using namespace std; #define MAX_DEPTH 8 #define RESULTS_MINDEPTH 2 #define RESULTS_LIMIT 40 class Node { public: int depth; string key; Node(int d) : next(), depth(d) {} Node * next[27]; ...
#ifndef GROUPLISTITEM_H #define GROUPLISTITEM_H #include <QWidget> namespace Ui { class GroupListItem; } class GroupListItem : public QWidget { Q_OBJECT public: explicit GroupListItem(QWidget *parent = 0); ~GroupListItem(); void set_group(QString group); void set_favorite(bool fav); signals: ...