text stringlengths 4 6.14k |
|---|
// This class handles input from, and output to, files.
#ifndef FILESTORE_H
#define FILESTORE_H
#include "Core.h"
#include "Libraries/Fatfs/ff.h"
#include "CRC32.h"
class Platform;
class FileWriteBuffer;
enum class OpenMode : uint8_t
{
read, // open an existing file for reading
write, // write a file, replaci... |
/**
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.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, either version 3 of the License, or
* (at your option) any later version... |
/** Q-score metric by lane
*
*
* The InterOp files parsed by this class include:
* - InterOp/QMetricsByLane.bin
* - InterOp/QMetricsByLaneOut.bin
*
* @file
* @date 5/17/2015
* @version 1.0
* @copyright GNU Public License.
*/
#pragma once
#include "interop/model/metrics/q_metric.h"
#include "interop/io/... |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*-
*
* gtksourceengine.h - Abstract base class for highlighting engines
*
* Copyright (C) 2003 - Gustavo Giráldez
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Libra... |
#ifndef FLASH_TYPES_H
#define FLASH_TYPES_H
#include <stdint.h>
/* flash partitions */
#define FLASH_PT_FACTORY 0
#define FLASH_PT_RESERVED 1
#define FLASH_PT_USER 2
#define FLASH_PT_GAME 3
#define FLASH_PT_UNKNOWN 4
#define FLASH_PT_NUM 5
/* flash logical blocks */
#define FLASH_USER_SYSCFG 0x05
/* system region s... |
//----------------------------------------------------------------------------
//
// Copyright (C) 2004-2017 by EMGU Corporation. All rights reserved.
//
//----------------------------------------------------------------------------
#pragma once
#ifndef EMGU_TESSERACT_C_H
#define EMGU_TESSERACT_C_H
#if (_MSC_VER >=... |
/*
* Copyright (C) 2008-2009 Daniel Prevost <dprevost@photonsoftware.org>
*
* This file is part of Photon (photonsoftware.org).
*
* This file may be distributed and/or modified under the terms of the
* GNU General Public License version 2 or version 3 as published by the
* Free Software Foundation and appearing... |
/* https://cirosantilli.com/linux-kernel-module-cheat#ring0 */
#ifndef LKMC_RING0_H
#define LKMC_RING0_H
#if defined(__x86_64__) || defined(__i386__)
#ifdef THIS_MODULE
#include <linux/kernel.h>
#if defined(__x86_64__)
typedef u64 LkmcRing0RegsType;
#elif defined(__i386__)
typedef u32 LkmcRing0RegsType;
#endif
#else
#... |
/**********************************************************************************************************************
(c) Copyright 2011, Bret Ambrose (mailto:bretambrose@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 publi... |
/*
* This file is part of the libemb project.
*
* Copyright (C) 2011 Stefan Wendler <sw@kaltpost.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
... |
#ifndef LOGEDITOR_H
#define LOGEDITOR_H
#include <QTextEdit>
#include <QColor>
#include "infomanager.h"
class QTextEdit;
class QColor;
class LogEditor
{
public:
explicit LogEditor();
explicit LogEditor(QTextEdit* logWindow);
void setLogWindow(QTextEdit *log);
// logging part
void newCompiling();... |
#pragma once
#ifndef _NRF8001_METEO_STATION_H_
#define _NRF8001_METEO_STATION_H_
/**
* Copyright 2015 University of Applied Sciences Western Switzerland / Fribourg
*
* 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 co... |
/*
* file:get_time.c
*/
#include <time.h>
#include <stdio.h>
#include <string.h>
#include "get_time.h"
/* get the time on server,
return: the ascii string of time , NULL on error
argument: time_buf the buffer to store time_string
*/
char *get_time_str(char *time_buf)
{
time_t now_sec;
struct tm *... |
/*
* 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... |
/*
Copyright (C) CFEngine AS
This file is part of CFEngine 3 - written and maintained by CFEngine AS.
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; version 3.
This program is di... |
//============================================================================
// Name : utils.cpp
// Author : Ivan
// Version :
// Copyright : GPL
// Description :
//============================================================================
#include <iostream>
#include <cstdlib>
#include <string>... |
/*
Copyright © 2014-2015 by The qTox Project Contributors
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre 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 versi... |
/*
* Copyright or © or Copr. 2008, Simon Duquennoy
*
* Author e-mail: simon.duquennoy@lifl.fr
*
* This software is a computer program whose purpose is to design an
* efficient Web server for very-constrained embedded system.
*
* This software is governed by the CeCILL license under French law and
* abiding by the ru... |
#ifndef TEXTURE_H
#define TEXTURE_H
#include <SDL.h>
#include "renderer.h"
#include "surface.h"
#include <exception>
class Texture
{
private:
SDL_Texture* texture;
public:
Texture(Renderer& sdlRenderer, Surface& sdlSurface)
{
texture = SDL_CreateTextureFromSurface(sdlRenderer.getRenderer(), sdlSurface.getSurface(... |
#ifndef ___ASM_SPARC_TLB_H
#define ___ASM_SPARC_TLB_H
#if defined(__sparc__) && defined(__arch64__)
#include <asm/tlb_64.h>
#else
#include <asm/tlb_32.h>
#endif
#endif
|
/****************************************************************************
* Copyright (c) 2011 Anthony Vital <anthony.vital@gmail.com> *
* *
* This file is part of Wicd Client KDE. *
* ... |
/*
===========================================================================
Doom 3 BFG Edition GPL Source Code
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
Doom 3 BFG Edition Source Code is free so... |
#include<stdio.h>
#include<stdlib.h>
#include "tree.h"
int main()
{
int choice, number, minimumNo;
tree *t;
t = init(t);
while(1)
{
printf("Choose option\n1. Insert\n2. Delete\n3. Inorder\n4. Exit\n");
scanf("%d", &choice);
switch(choice)
{
case 1:
printf("Enter the number\n");
scanf("%d", &numb... |
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2015- Statoil ASA
// Copyright (C) 2015- Ceetron Solutions AS
//
// ResInsight is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by... |
#ifndef EVENTMIXER_TOYMCEVENT_H__
#define EVENTMIXER_TOYMCEVENT_H__
#include "../config/MixerSettings.h"
#include "TTree.h"
#include "TLorentzVector.h"
#include <memory>
/**
* Toy MC input event.
* Provides only the two 4-vectors of the single muons.
*/
class ToyMCEvent{
public:
ToyMCEvent() = default;
Toy... |
/*
* Phytec pcm030 driver for the PSC of the Freescale MPC52xx
* configured as AC97 interface
*
* Copyright 2008 Jon Smirl, Digispeaker
* Author: Jon Smirl <jonsmirl@gmail.com>
*
* This file is licensed under the terms of the GNU General Public License
* version 2. This program is licensed "as is" without any w... |
/*
* Copyright (C) 2006-2008 Nokia Corporation
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
... |
/*=========================================================================
Program: ParaView
Module: vtkWeightedRedistributePolyData.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHO... |
#include <pthread.h>
int thread_flag;
pthread_mutex_t thread_flag_mutex;
void initialize_flag(void)
{
pthread_mutex_init(&thread_flag_mutex, NULL)
thread_flag = 0;
}
void do_work()
{
}
void* thread_function(void* arg)
{
while(1)
{
int flag_is_set;
pthread_mutex_lock(&thread_flag_m... |
// (c) Michael Buro 1992-2002, licensed under the GNU Public License, version 2
// fastest first search at the bottom of the tree / 7.99
// doesn't work
#include "main.h"
#include "ffend.h"
#include "end.h"
#if !LAZY_UPDATE
#error "LAZY_UPDATE false"
#endif
#define FF_SORT_MAX 58
inline bool move_ok(Square *p, ... |
/*****************************************************************************
*
* PROJECT: Multi Theft Auto v1.0
* LICENSE: See LICENSE in the top level directory
* FILE: sdk/game/CSettings.h
* PURPOSE: Game settings interface
*
* Multi Theft Auto is available from http://www.multithefta... |
/*
* Licensed to Green Energy Corp (www.greenenergycorp.com) under one or
* more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Green Energy Corp licenses this file to you under the Apache License,
* Version 2.0 (the "Lic... |
/*
* 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... |
/* Auxiliary program to test mbrtowc(3) behaviour.
Copyright 2016-2018 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 version 3, or (at your option)... |
/*
* Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
*
* WeeChat 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 ve... |
/**
* \file IMP/deprecation.h
* \brief Control display of deprecation information.
*
* Copyright 2007-2017 IMP Inventors. All rights reserved.
*
*/
#ifndef IMPKERNEL_DEPRECATION_H
#define IMPKERNEL_DEPRECATION_H
#include <IMP/kernel_config.h>
IMPKERNEL_BEGIN_NAMESPACE
//! Toggle printing of warnings on usi... |
//
/*
for i:=0; i < li; i++ {
//place value in state
state[local_frame]=in[i]
//calculate output
out[i] = complex64(C.convolute((*C.float_t)(&coeffs[0]),(*C.complexfloat)(&state[0]),(*C.uint32_t)(&lc),(*C.uint32_t)(&local_frame)))
//shift fir_frame
local_frame = (loc... |
#pragma once
#include "Node.h"
#include "math.h"
#include <cstring>
/** Handles binary operations
* @author Jim Ahlstrand
* @todo add test for number of children, binop can have max 2
*/
class Binop : public Node {
public:
//! Defines types of Binops
enum Type {
Undefined,
Equal,
Addition,
Subtrac... |
#ifndef _screen_screens_h
#define _screen_screens_h
enum screens {
START_SCREEN,
GAME_SCREEN
};
/* Getters and setters */
int getScreenWidth();
int getScreenHeight();
enum screens getScreen();
void setScreenWidth(int newScreenWidth);
void setScreenHeight(int newScreenHeight);
void setScreen(enum screens newScreen)... |
/*
This file is part of Genesys.
Genesys 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.
Genesys is distributed in ... |
/**************************************************************************
This file is part of JahshakaVR, VR Authoring Toolkit
http://www.jahshaka.com
Copyright (c) 2016 GPLv3 Jahshaka LLC <coders@jahshaka.com>
This is free software: you may copy, redistribute
and/or modify it under the terms of the GPLv3 License
... |
#include <stdio.h>
int s[100005], f[100005];
inline int min(int a,int b) { return a < b ? a : b; }
int main()
{
int i,n,m,a,b,t;
scanf("%d",&n);
for (i = 1;i <= n;++i) {
scanf("%d",&s[i]);
f[i + 1] = f[i] + s[i];
}
scanf("%d",&m);
for (i = 1;i <= m;++i) {
scanf("%d%d",&a,&b);
if (a > b) { t = a;a = b;b = ... |
#ifndef __TELNETP_H__
#define __TELNETP_H__
#include "utils.h"
#include "ansi_p_codes.h"
enum {
TO_COMPRESS,
TO_COMPRESS2,
TO_SUPRESS_GO_AHEAD,
TO_ECHO,
TO_NUM_OPTIONS
};
enum echo_types
{
ET_SERVER_WILL_ECHO,
ET_SERVER_DO_ECHO
};
struct ascii_callback
{
unsigned char c;
};
str... |
//
// RegistView.h
// Opt_master
//
// Created by 瑞宁科技02 on 16/7/8.
// Copyright © 2016年 reining. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Image+textField.h"
#import "ImageTextField.h"
@interface RegistView : UIView
/**
* LogoImage
*/
@property (nonatomic ,strong)UIImageView *logoImage;
//@prop... |
/***************************************************************************
udp.h - A small class for udp socket communication
Copyright (C) 2003 Ingmar Stieger (Papillon)
email: papillon@blackdagger.com
This program is free software; you can redistribute it and/or modify
it under the terms of the... |
/*
This file is part of Desperion.
Copyright 2010, 2011 LittleScaraby, Nekkro
Desperion 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 l... |
#ifndef TITLEPAGE_H
#define TITLEPAGE_H
#include "titlepageelement.h"
class TitlePage
{
public:
TitlePage();
~TitlePage();
void clear();
void addElement(TitlePageElement *element);
QString toFoutain();
QString toHtml();
private:
QList<TitlePageElement *> m_content;
};
#endif // TITLEPAG... |
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* This file is part of the libone project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.or... |
/* Copyright (c) 2013-2015 Jeffrey Pfau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef GBA_SAVEDATA_H
#define GBA_SAVEDATA_H
#include "util/common.h"
... |
/**
* @file: node_group.h
* Group of nodes
*
* Layout library, 2d graph placement of graphs in ShowGraph tool.
* Copyright (c) 2009, Boris Shurygin
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are... |
#ifndef tetrahedron_h
#define tetrahedron_h
#include "globals.h"
class Tetrahedron
{
public:
Matrix3d DeformedShapeMatrix, ReferenceShapeMatrix, InvRefShapeMatrix;
VectorXi verticesIndex;
double undeformedVol, energyDensity, currentVol;
double mu, lambda;
Tetrahedron(VectorXi k, double mu, double ... |
//--------------------------------------------------------------------------------------------------
/**
* Copyright (C) Sierra Wireless Inc.
*/
//--------------------------------------------------------------------------------------------------
#ifndef LEGATO_MKTOOLS_CLI_GENERATEDEFTEMPLATE_H_INCLUDE_GUARD
#define ... |
/*
* This file contains/describes functions that parse command line options.
*/
#ifndef __options_h__
#define __options_h__
#include <limits.h>
struct sStringList;
extern int OPT_VERSION, OPT_HELP, OPT_INFO, OPT_IGNORE_CASE, OPT_ORDER,
OPT_LIST, OPT_REVERSE, OPT_NATURAL_SORT, OPT_RECURSIVE, OPT_RANDOM,
OPT_M... |
#pragma once
#include <vector>
#include <functional>
#include <Eigen/Dense>
namespace SystemSolver
{
using oneVarFunc = std::function<double(double)>;
using multVarFunc = std::function<double(const Eigen::VectorXd &)>;
} |
#include <stdio.h>
#include <strings.h>
#include <errno.h>
main( argc, argv )
int argc;
char *argv[];
{
while (--argc)
striplf( *++argv );
}
striplf( arq )
char *arq;
{
FILE *in, *out;
char linha[2048], *p;
char tmpname[200];
strcpy( tmpname, "@@##XXXXXX" );
mktemp( tmpname );
in = f... |
/**
******************************************************************************
* @file USB_Device/DualCore_Standalone/Src/stm32f4xx_it.c
* @author MCD Application Team
* @version V1.2.3
* @date 29-January-2016
* @brief Main Interrupt Service Routines.
* This file provides tem... |
/**
* @brief Server wrapper script - client
*
* @file atmiclt54.c
*/
/* -----------------------------------------------------------------------------
* Enduro/X Middleware Platform for Distributed Transaction Processing
* Copyright (C) 2009-2016, ATR Baltic, Ltd. All Rights Reserved.
* Copyright (C) 2017-2019, M... |
//Copyright © 2014 SDXFramework
//[License]GNU Affero General Public License, version 3
//[Contact]http://sourceforge.jp/projects/dxframework/
#pragma once
//#include <Multimedia/Color.h>
#include <chrono>
namespace SDX
{
/** 時間と日付を取得する関数群.*/
/** わりと標準ライブラリで良い感じはある.*/
/** \include Time.h*/
class Time
{
private:... |
/*
Copyright (c) 2014-2022 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 CmsgSummonResponse : public ManagedPacket
... |
/*
* Arc MMORPG Server
* Copyright (C) 2005-2010 Arc Team <http://www.arcemulator.net/>
*
* This software is under the terms of the EULA License
* All title, including but not limited to copyrights, in and to the ArcNG Software
* and any copies there of are owned by ZEDCLANS INC. or its suppliers. All title
* a... |
/* 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:
... |
/*
* This file is part of DGD, https://github.com/dworkin/dgd
* Copyright (C) 1993-2010 Dworkin B.V.
* Copyright (C) 2010-2017 DGD Authors (see the commit log for details)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* p... |
#ifndef QGC_CONFIGURATION_H
#define QGC_CONFIGURATION_H
#include "globalobject.h"
#include <QString>
#include <QDateTime>
#include <QDir>
#include <QCoreApplication>
/** @brief Polling interval in ms */
#define SERIAL_POLL_INTERVAL 100
/** @brief Heartbeat emission rate, in Hertz (times per second) */
#define MAVLIN... |
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.ac by autoheader. */
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if you have t... |
/*
* (c) Copyright Ascensio System SIA 2010-2019
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGP... |
/**
Released as open source by NCC Group Plc - http://www.nccgroup.com/
Developed by Gabriel Caudrelier, gabriel dot caudrelier at nccgroup dot com
https://github.com/nccgroup/pip3line
Released under AGPL see LICENSE for more information
**/
#ifndef TRANSFORMWIDGET_H
#define TRANSFORMWIDGET_H
#include <QWidget>
#i... |
/** @file
* @brief functions to convert classes to strings and back
*/
/* Copyright (C) 2006,2007,2008,2009,2012,2014 Olly Betts
*
* 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 ve... |
#include <string>
#include "libreactor/future.h"
namespace UnixSocket {
void listen(Reactor& reactor, std::string path, std::function<void(FDPtr)> callback);
StreamPtr connect(Reactor& reactor, std::string path);
FDPtr bind(Reactor& reactor, std::string path);
void listen(Reactor& reactor, FDPtr socket... |
#ifndef HEADER_CURL_LDAP_H
#define HEADER_CURL_LDAP_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
... |
/**
* \file
*
* \brief SAM DA1 Xplained Pro test configuration.
*
* Copyright (c) 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 ... |
/**********************************************************************\
* Copyright (C) Michael Kerrisk, 2010. *
* *
* This program is free software. You may use, modify, and redistribute *
* it under the terms of the ... |
/*
* Disnix - A Nix-based distributed service deployment tool
* Copyright (C) 2008-2022 Sander van der Burg
*
* 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 ... |
/*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2022 by The BRLTTY Developers.
*
* BRLTTY comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms o... |
/*
* Tiny Vector Matrix Library
* Dense Vector Matrix Libary of Tiny size using Expression Templates
*
* Copyright (C) 2001 - 2007 Olaf Petzold <opetzold@users.sourceforge.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* Licens... |
#ifndef _ROS_SERVICE_DetectWall_h
#define _ROS_SERVICE_DetectWall_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
#include "geometry_msgs/PointStamped.h"
#include "geometry_msgs/Vector3Stamped.h"
namespace stereo_wall_detection
{
static const char DETECTWALL[] = "stereo_wall_detecti... |
/*
* Copyright (C) 2009-2013, 2015 Red Hat, Inc.
*
* 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 your option) any later version.
*
* ... |
/////////////////////////////////////////////////////////////////////////
//
// © University of Southampton IT Innovation Centre, 2013
//
// Copyright in this software belongs to University of Southampton
// IT Innovation Centre of Gamma House, Enterprise Road,
// Chilworth Science Park, Southampton, SO16 7NS, UK.
//
... |
/***************************************************************************
* Copyright (C) 2006-2007 Laurentiu-Gheorghe Crisan
* Copyright (C) 2006-2007 Marc Boris Duerner
* Copyright (C) 2009 Tommi Maekitalo
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the G... |
/* Ruby bindings for the Clutter 'interactive canvas' library.
* Copyright (C) 2008 Neil Roberts
*
* 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 Lice... |
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*******... |
/* FluidSynth - A Software Synthesizer
*
* Copyright (C) 2003 Peter Hanappe and others.
*
* 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 (... |
/*
* WebKit2 EFL
*
* Copyright (c) 2012 Samsung Electronics Co., Ltd.
*
* 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 your option... |
/* GtkGlk - Glk Implementation using Gtk+
Copyright (C) 2003-2004 Evin Robertson
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... |
/* linbox/algorithms/blackbox-container-symmetrize.h
* Copyright (C) 1999, 2001 Jean-Guillaume Dumas
*
* Written by Jean-Guillaume Dumas <Jean-Guillaume.Dumas@imag.fr>,
*
* ------------------------------------
* Bradford Hovinen <hovinen@cis.udel.edu>
*
* Ported to linbox-new framework; replaced use of DOTPROD,... |
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** ... |
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** No C... |
/*
* Copyright 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 or at
* https://www.openssl.org/source/licens... |
/****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Comme... |
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the qt3to4 porting application of the Qt Toolkit.
**
** $QT_BEGIN_LIC... |
//
// Copyright (c) 2013, Ford Motor Company
// 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 above copyright notice, this
// list of condit... |
// SPDX-License-Identifier: GPL-2.1-or-later
/*
* Copyright (C) 2009-2014 Cyril Hrubis <metan@ucw.cz>
*/
#include <string.h>
#include <errno.h>
#include <sys/stat.h>
#include <core/gp_pixmap.h>
#include <core/gp_get_put_pixel.h>
#include <loaders/gp_loaders.h>
#include "tst_test.h"
#define LOAD gp_load_ppm
#defin... |
/* (c) Code Red Technologies. dTR */
#if !defined(__CR2_C___4_6_2_BITS_FUNCTEXCEPT_H__)
# define __CR2_C___4_6_2_BITS_FUNCTEXCEPT_H__
# if defined(__REDLIB__)
# include_next <c++/4.6.2/bits/functexcept.h>
# else
# include <newlib_inc/c++/4.6.2/bits/functexcept.h>
# if !defined (__NEWLIB__) && !defined(__LIB... |
//
// libavg - Media Playback Engine.
// Copyright (C) 2003-2011 Ulrich von Zadow
//
// 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 of the License, or (at y... |
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this f... |
/*************** <auto-copyright.pl BEGIN do not edit this line> **************
*
* VR Juggler is (C) Copyright 1998-2007 by Iowa State University
*
* Original Authors:
* Allen Bierbaum, Christopher Just,
* Patrick Hartling, Kevin Meinert,
* Carolina Cruz-Neira, Albert Baker
*
* This library is free soft... |
/****************************************************************************
* Copyright (C) 2013-2014 by Savoir-Faire Linux *
* Author : Alexandre Lision <alexandre.lision@savoirfairelinux.com> *
* *
* This li... |
/*
* driver-state.h: entry points for state drivers
*
* Copyright (C) 2006-2014 Red Hat, Inc.
*
* 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... |
/****************************************************************/
/* DO NOT MODIFY THIS HEADER */
/* MOOSE - Multiphysics Object Oriented Simulation Environment */
/* */
/* (c) 2010 Battelle Energy Alliance, LLC ... |
/*
Title: polyexports.h
Copyright (c) 2006, 2011, 2015 David C.J. Matthews
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distribut... |
/*
* AT-SPI - Assistive Technology Service Provider Interface
* (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
*
* Copyright 2009 Nokia.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.