blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 5 146 | content_id stringlengths 40 40 | detected_licenses listlengths 0 7 | license_type stringclasses 2
values | repo_name stringlengths 6 79 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 4
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.07k 426M ⌀ | star_events_count int64 0 27 | fork_events_count int64 0 12 | gha_license_id stringclasses 3
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 6
values | src_encoding stringclasses 26
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 20 6.28M | extension stringclasses 20
values | content stringlengths 20 6.28M | authors listlengths 1 16 | author_lines listlengths 1 16 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
104930ac63d3c2c9ea4275afbc764e054214676f | 677f7dc99f7c3f2c6aed68f41c50fd31f90c1a1f | /SolidSBCTestSDK/SolidSBCTestManager.h | 35c98440926234fdbb617650163caa00a62fa4bc | [] | no_license | M0WA/SolidSBC | 0d743c71ec7c6f8cfe78bd201d0eb59c2a8fc419 | 3e9682e90a22650e12338785c368ed69a9cac18b | refs/heads/master | 2020-04-19T14:40:36.625222 | 2011-12-02T01:50:05 | 2011-12-02T01:50:05 | 168,250,374 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,340 | h | #pragma once
#include "SolidSBCTestSDK.h"
class SOLIDSBCTESTSDK_API CSolidSBCTestManager
{
protected:
CSolidSBCTestManager(void);
~CSolidSBCTestManager(void);
public:
int StartTest(const std::string& sXML);
int StopTest (const std::string& sTestName);
int GetTestResults(std::vector<CSolidSBCTest... | [
"admin@bd7e3521-35e9-406e-9279-390287f868d3"
] | [
[
[
1,
37
]
]
] |
e3ea2e9a86f1af9b308815af90c682d93e4a5964 | 6b83c731acb331c4f7ddd167ab5bb562b450d0f2 | /my_inc2/Draw08.cpp | f7651d0c70e489b028a3478e4ef49d84d2591cfa | [] | no_license | weimingtom/toheart2p | fbfb96f6ca8d3102b462ba53d3c9cff16ca509e7 | 560e99c42fdff23e65f16df6d14df9a9f1868d8e | refs/heads/master | 2021-01-10T01:36:31.515707 | 2007-12-20T15:13:51 | 2007-12-20T15:13:51 | 44,464,730 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 13,987 | cpp |
#include <mm_std.h>
#include "bmp.h"
#include "draw.h"
#include "palette.h"
int DRW_GetStartPointerSrc(int sx, int sy, int sw, int sh, int w, int rparam)
{
int ret;
if (rparam &REV_H)
{
ret = (sy + sh - 1) *w;
}
else
{
ret = sy * w;
}
if (rparam &REV_W)
{
ret += sx + sw - 1;
}
... | [
"pspbter@13f3a943-b841-0410-bae6-1b2c8ac2799f"
] | [
[
[
1,
618
]
]
] |
3c58e7f9727694c3ce33e057634253568ab09e6c | 40b507c2dde13d14bb75ee1b3c16b4f3f82912d1 | /sourcepawn/jit/x86/opcode_helpers.cpp | e2f508b2602cbd4ad4ffcc8d913b11aba3ed56b5 | [] | no_license | Nephyrin/-furry-octo-nemesis | 5da2ef75883ebc4040e359a6679da64ad8848020 | dd441c39bd74eda2b9857540dcac1d98706de1de | refs/heads/master | 2016-09-06T01:12:49.611637 | 2008-09-14T08:42:28 | 2008-09-14T08:42:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,821 | cpp | /**
* vim: set ts=4 :
* =============================================================================
* SourcePawn JIT
* Copyright (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================================
*
* This file is not open source and may ... | [
"dvander@alliedmods.net",
"ds@alliedmods.net",
"faluco@alliedmods.net"
] | [
[
[
1,
1
],
[
7,
7
],
[
11,
17
],
[
19,
22
],
[
24,
124
],
[
126,
152
],
[
154,
155
],
[
157,
159
],
[
161,
165
],
[
167,
... |
2b287c476602a8284583c3a3b818ded073d148c0 | 39040af0ff84935d083209731dd7343f93fa2874 | /misc/winevent.cpp | 174bf44b7205720883988aee8422c3cb43f63064 | [
"Apache-2.0"
] | permissive | alanzw/ulib-win | 02f8b7bcd8220b6a057fd3b33e733500294f9b56 | b67f644ed11c849e3c93b909f90d443df7be4e4c | refs/heads/master | 2020-04-06T05:26:54.849486 | 2011-07-23T05:47:17 | 2011-07-23T05:47:17 | 34,505,292 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 3,156 | cpp |
// public domain
// by Christopher Diggins 2004
// http://www.cdiggins.com
//
// This program demonstrates a technique of static dispatch for event-driven programming
// using template specialization.
#include <windows.h>
#include "winevent.hpp"
#include <time.h>
#include <stdio.h>
int nInt = 0;
i... | [
"fox000002@48c0247c-a797-11de-8c46-7bd654735883"
] | [
[
[
1,
118
]
]
] |
532100393ede44506c397534e7e826a68481ccff | 7b379862f58f587d9327db829ae4c6493b745bb1 | /JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp | f92da69da2534882c8ab971ec658b87de46bd6ba | [] | no_license | owenvallis/Nomestate | 75e844e8ab68933d481640c12019f0d734c62065 | 7fe7c06c2893421a3c77b5180e5f27ab61dd0ffd | refs/heads/master | 2021-01-19T07:35:14.301832 | 2011-12-28T07:42:50 | 2011-12-28T07:42:50 | 2,950,072 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,754 | cpp | /*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"
Copyright 2004-11 by Raw Material Software Ltd.
------------------------------------------------------------------------------
JUCE can be r... | [
"ow3nskip"
] | [
[
[
1,
89
]
]
] |
6f1db6cb08544f257fa26cfd5727c10474114ebb | de2f72b217bc8a9b1f780090bedf425a2ad9587a | /Pangea/Generic/include/Vector3.h | 90651016b70d45cb6262597fab968e1469480d90 | [] | no_license | axelwass/oliveira | 65b32a7f16cb7e00a95cdf3051a731a2004aaf5f | 4c34730a720465311e367f8e25cc1cced46801c7 | refs/heads/master | 2021-01-18T14:18:42.622080 | 2011-04-18T18:39:08 | 2011-04-18T18:39:08 | 32,120,045 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,298 | h | /*
* Vector3.h
*
* Created on: Jan 21, 2010
* Author: Mariano
*/
#ifndef VECTOR3_H_
#define VECTOR3_H_
#include "precision.h"
#include <math.h>
class Vector3 {
private:
/** Holds a 3D vector */
real x, y, z;
public:
real getX() const {
return x;
}
real getY() co... | [
"merchante.mariano@d457d4b0-f835-b411-19da-99c4f284aa10"
] | [
[
[
1,
148
]
]
] |
4b30b0d564f6b3c14838734d12de667616382c97 | 3e69b159d352a57a48bc483cb8ca802b49679d65 | /trunk/gerbview/deltrack.cpp | 0da5e22180b1e2ae6860e762aed3635440aad168 | [] | no_license | BackupTheBerlios/kicad-svn | 4b79bc0af39d6e5cb0f07556eb781a83e8a464b9 | 4c97bbde4b1b12ec5616a57c17298c77a9790398 | refs/heads/master | 2021-01-01T19:38:40.000652 | 2006-06-19T20:01:24 | 2006-06-19T20:01:24 | 40,799,911 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,964 | cpp | /*********************************************/
/* Edition des pistes: Routines d'effacement */
/* Effacement de segment, piste, net et zone */
/*********************************************/
#include "fctsys.h"
#include "common.h"
#include "gerbview.h"
#include "protos.h"
/* Routines externes :... | [
"bokeoa@244deca0-f506-0410-ab94-f4f3571dea26"
] | [
[
[
1,
76
]
]
] |
747caa7eaabb3ee01b5a99e577c8e086f55c3c80 | 854ee643a4e4d0b7a202fce237ee76b6930315ec | /arcemu_svn/src/arcemu-world/AddonMgr.h | 5625be615ccec8ef250e137289de3c2c5f7ae3ef | [] | no_license | miklasiak/projekt | df37fa82cf2d4a91c2073f41609bec8b2f23cf66 | 064402da950555bf88609e98b7256d4dc0af248a | refs/heads/master | 2021-01-01T19:29:49.778109 | 2008-11-10T17:14:14 | 2008-11-10T17:14:14 | 34,016,391 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,588 | h | /*
* ArcEmu MMORPG Server
* Copyright (C) 2005-2007 Ascent Team <http://www.ascentemu.com/>
* Copyright (C) 2008 <http://www.ArcEmu.org/>
*
* 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 Softwa... | [
"Quastl96@gmail.com@3074cc92-8d2b-11dd-8ab4-67102e0efeef",
"minipc@hotmail.de@3074cc92-8d2b-11dd-8ab4-67102e0efeef"
] | [
[
[
1,
1
],
[
5,
56
]
],
[
[
2,
4
]
]
] |
29d9f3d9cae84d7c19d72c45fda5bc3616a01227 | 0c62a303659646fa06db4d5d09c44ecb53ce619a | /Kickapoo/Map.cpp | a99b0cb0f369668767c15d63d0fe0641ade87636 | [] | no_license | gosuwachu/igk-game | 60dcdd8cebf7a25faf60a5cc0f5acd6f698c1c25 | faf2e6f3ec6cfe8ddc7cb1f3284f81753f9745f5 | refs/heads/master | 2020-05-17T21:51:18.433505 | 2010-04-12T12:42:01 | 2010-04-12T12:42:01 | 32,650,596 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,828 | cpp | #include "Common.h"
Map::Map()
{
wall = new Texture;
tower = new Texture;
tower2 = new Texture;
tower_death = new Texture;
playerTexture = new Texture;
playerSelected = new Texture;
player2Texture = new Texture;
player2Selected = new Texture;
wall->load("gfx/wall.png");
tower->load("gfx/tower.pn... | [
"konrad.rodzik@d16c65a5-d515-2969-3ec5-0ec16041161d",
"ayufan@osk-net.pl@d16c65a5-d515-2969-3ec5-0ec16041161d",
"merowing2@gmail.com@d16c65a5-d515-2969-3ec5-0ec16041161d"
] | [
[
[
1,
34
],
[
47,
48
],
[
50,
54
],
[
77,
77
],
[
124,
128
],
[
147,
147
],
[
184,
194
],
[
197,
217
],
[
226,
226
],
[
231,
... |
20799166a2ce82a5ddb479c1168770965bbfbfb5 | 011359e589f99ae5fe8271962d447165e9ff7768 | /src/cpu/m6809/m6809.cpp | 47b620cc19fd7c2cf838edd74eb9f6284e34eabc | [] | no_license | PS3emulators/fba-next-slim | 4c753375fd68863c53830bb367c61737393f9777 | d082dea48c378bddd5e2a686fe8c19beb06db8e1 | refs/heads/master | 2021-01-17T23:05:29.479865 | 2011-12-01T18:16:02 | 2011-12-01T18:16:02 | 2,899,840 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 55,976 | cpp | /*** m6809: Portable 6809 emulator ******************************************
Copyright John Butler
References:
6809 Simulator V09, By L.C. Benschop, Eidnhoven The Netherlands.
m6809: Portable 6809 emulator, DS (6809 code in MAME, derived from
the 6809 Simulator V09)
... | [
"twinaphex1@gmail.com"
] | [
[
[
1,
1217
]
]
] |
c64f5e7def45bdd2e60c2cbffe94118bb38c76d3 | c2153dcfa8bcf5b6d7f187e5a337b904ad9f91ac | /depends/ClanLib/src/API/Core/XML/dom_text.h | 0b178837f2b6fae98cd46d534fb10743d6171461 | [] | no_license | ptrefall/smn6200fluidmechanics | 841541a26023f72aa53d214fe4787ed7f5db88e1 | 77e5f919982116a6cdee59f58ca929313dfbb3f7 | refs/heads/master | 2020-08-09T17:03:59.726027 | 2011-01-13T22:39:03 | 2011-01-13T22:39:03 | 32,448,422 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,797 | h | /*
** ClanLib SDK
** Copyright (c) 1997-2010 The ClanLib Team
**
** 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 granted to anyone to use this softwa... | [
"PTrefall@gmail.com@c628178a-a759-096a-d0f3-7c7507b30227"
] | [
[
[
1,
108
]
]
] |
f07136db4a36eb8aa3273a1088e3bba26af77e14 | 6e4f9952ef7a3a47330a707aa993247afde65597 | /PROJECTS_ROOT/SmartWires/SystemUtils/InternetUtils.h | 0dab0d8c881088194a00684e2b2493ebfa559269 | [] | no_license | meiercn/wiredplane-wintools | b35422570e2c4b486c3aa6e73200ea7035e9b232 | 134db644e4271079d631776cffcedc51b5456442 | refs/heads/master | 2021-01-19T07:50:42.622687 | 2009-07-07T03:34:11 | 2009-07-07T03:34:11 | 34,017,037 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,251 | h | // SupportClasses.h: interface for the SupportClasses class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_InternetUtils_H)
#define AFX_InternetUtils_H
//#include <wininet.h>
#ifndef DWORD_PTR
#define DWORD_PTR DWORD
#endif
typedef LPVOID HINTERNET;
#define FLAG_... | [
"wplabs@3fb49600-69e0-11de-a8c1-9da277d31688"
] | [
[
[
1,
55
]
]
] |
aac3a685cd3819f48d29f7f8379e73acdcaa4f3d | 91b964984762870246a2a71cb32187eb9e85d74e | /SRC/OFFI SRC!/boost_1_34_1/boost_1_34_1/libs/multi_index/test/test_capacity.hpp | f02db35b84e73110daa7ca2f5f6af3d1c1c78180 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | willrebuild/flyffsf | e5911fb412221e00a20a6867fd00c55afca593c7 | d38cc11790480d617b38bb5fc50729d676aef80d | refs/heads/master | 2021-01-19T20:27:35.200154 | 2011-02-10T12:34:43 | 2011-02-10T12:34:43 | 32,710,780 | 3 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 364 | hpp | /* Boost.MultiIndex test for capacity memfuns.
*
* Copyright 2003-2004 Joaquín M López Muñoz.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*
* See http://www.boost.org/libs/multi_index for library h... | [
"66430417@qq.com@e2c90bd7-ee55-cca0-76d2-bbf4e3699278"
] | [
[
[
1,
11
]
]
] |
9655ae9cd4b4032e26d0cf49a4fe18664dfdcb21 | e7c45d18fa1e4285e5227e5984e07c47f8867d1d | /Scada/scOPCsrv/OPCSrvr/SrvMngr.h | 875f4767e575191b4e0658a5b9c2ec05095b079f | [] | no_license | abcweizhuo/Test3 | 0f3379e528a543c0d43aad09489b2444a2e0f86d | 128a4edcf9a93d36a45e5585b70dee75e4502db4 | refs/heads/master | 2021-01-17T01:59:39.357645 | 2008-08-20T00:00:29 | 2008-08-20T00:00:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,258 | h | //================== SysCAD - Copyright Kenwalt (Pty) Ltd ===================
// $Nokeywords: $
//===========================================================================
#ifndef __SRVMNGR_H
#define __SRVMNGR_H
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#ifndef __SCDVER_H
#include... | [
"paul.hannah@syscad.net"
] | [
[
[
1,
69
]
]
] |
167feb5a560dbc8958e1355ed1a9a370d2c9ab94 | eda410906c2ec64689d8c0b84f3c2862f469144b | /DropSendCore/utils/singleton.h | 19a51e4a38843e3db84172770537f9125d5d7adc | [] | no_license | redbox/Dropsend | 640ea157a2caec88aa145f5bdc7fa85db95203a5 | 8fe4b4478616b9850b55011a506653026a28f7da | refs/heads/master | 2020-06-02T20:54:18.301786 | 2010-09-06T16:16:05 | 2010-09-06T16:16:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 981 | h | #ifndef SINGLETON_H
#define SINGLETON_H
namespace dropsend {
namespace utils {
/**
* @class Singleton.
* @brief Implementation of singleton design pattern.
**/
template <class T>
class Singleton
{
public:
/*... | [
"slava.arty@gmail.com"
] | [
[
[
1,
38
]
]
] |
ee7932c61cba08041e41c2555c03197d24d2153d | 0c5fd443401312fafae18ea6a9d17bac9ee61474 | /code/engine/Core/USPResource.h | 34307bcd1408ff2487f437bae89fc46cc5d1b9c4 | [] | no_license | nurF/Brute-Force-Game-Engine | fcfebc997d6ab487508a5706b849e9d7bc66792d | b930472429ec6d6f691230e36076cd2c868d853d | refs/heads/master | 2021-01-18T09:29:44.038036 | 2011-12-02T17:31:59 | 2011-12-02T17:31:59 | 2,877,061 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,725 | h | /* ___ _________ ____ __
/ _ )/ __/ ___/____/ __/___ ___ _/_/___ ___
/ _ / _// (_ //___/ _/ / _ | _ `/ // _ | -_)
/____/_/ \___/ /___//_//_|_, /_//_//_|__/
/___/
This file is part of the Brute-Force Game Engine, BFG-Engine
... | [
"wittus@gmx.de"
] | [
[
[
1,
58
]
]
] |
e5fadaf6ec6f8e407ddfe0728a6138ca438ce126 | 94c1c7459eb5b2826e81ad2750019939f334afc8 | /source/ManagerStockType.h | 9e85f35fbfc2e0ce740288f9c2651fbf2b418256 | [] | no_license | wgwang/yinhustock | 1c57275b4bca093e344a430eeef59386e7439d15 | 382ed2c324a0a657ddef269ebfcd84634bd03c3a | refs/heads/master | 2021-01-15T17:07:15.833611 | 2010-11-27T07:06:40 | 2010-11-27T07:06:40 | 37,531,026 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,693 | h |
#if !defined(AFX_MANAGERSTOCKTYPE_H__BD1C43A1_5D50_11D4_8829_00400552E583__INCLUDED_)
#define AFX_MANAGERSTOCKTYPE_H__BD1C43A1_5D50_11D4_8829_00400552E583__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSuperviseSharesBlock : public CDialog
{
public:
CSuperviseSharesBlock(CWn... | [
"7171136@qq.com"
] | [
[
[
1,
73
]
]
] |
29d95834274397c729176f44aced48b944483747 | f1d47cd447044e6d892627119c3361e27ac02102 | /src/Ascens/stl_trie_multiset.h | d45ff51d5685c1bea68daa5ea65c1d8acf6e7bff | [] | no_license | ericalbright/ascens | ec35b0bacad19c60f4892e3497ee618cbcda7497 | b3299e86a9b4b9f3230c525222f8e8ee10ae90ab | refs/heads/master | 2020-06-08T05:23:14.472690 | 2008-05-13T05:52:39 | 2008-05-13T05:52:39 | 32,619,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,089 | h | /*
* Copyright (c) 1998-2002
* Eric S. Albright
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this per... | [
"lsu.eric@cde1953e-b737-0410-a653-7d96ffb9ffa0"
] | [
[
[
1,
348
]
]
] |
79b3acc89e0f088cdb04a30f515d94aeb104bf26 | 57574cc7192ea8564bd630dbc2a1f1c4806e4e69 | /Poker/Cliente/Ejecutor.h | 260f6534c8c9a944e5d713fa4f77971ab750b815 | [] | no_license | natlehmann/taller-2010-2c-poker | 3c6821faacccd5afa526b36026b2b153a2e471f9 | d07384873b3705d1cd37448a65b04b4105060f19 | refs/heads/master | 2016-09-05T23:43:54.272182 | 2010-11-17T11:48:00 | 2010-11-17T11:48:00 | 32,321,142 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 743 | h | #ifndef _EJECUTOR_H__
#define _EJECUTOR_H__
#include "SDL.h"
#include "Ventana.h"
#include "OperacionUICliente.h"
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <string.h>
using namespace std;
class Ejecutor
{
private:
static bool enEjecucion;
static string parametro;
stati... | [
"natlehmann@gmail.com@a9434d28-8610-e991-b0d0-89a272e3a296"
] | [
[
[
1,
38
]
]
] |
cb388618526fe3556d7f875227002cd2f8da999b | ee065463a247fda9a1927e978143186204fefa23 | /Src/Engine/GameState/GameStateManager.cpp | e1084aa3e2a3a075d913a6dc0e05d82715cf89df | [] | no_license | ptrefall/hinsimviz | 32e9a679170eda9e552d69db6578369a3065f863 | 9caaacd39bf04bbe13ee1288d8578ece7949518f | refs/heads/master | 2021-01-22T09:03:52.503587 | 2010-09-26T17:29:20 | 2010-09-26T17:29:20 | 32,448,374 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,267 | cpp | #include "GameStateManager.h"
#include "IGameState.h"
#include "GameStateFactory.h"
#include <Engine/Core/CoreManager.h>
#include <Engine/Scene/SceneManager.h>
using namespace Engine;
using namespace GameState;
GameStateManager::GameStateManager(Core::CoreManager *coreMgr)
: gameStateIds(0), currentState(NU... | [
"PTrefall@gmail.com@28a56cb3-1e7c-bc60-7718-65c159e1d2df"
] | [
[
[
1,
157
]
]
] |
88a5e61bce5d88dab7c64f2c90170a0160eeccad | fad6f9883d4ad2686c196dc532a9ecb9199500ee | /NXP-LPC/CommTest/CommTest/ClientChildFrm.h | a6ea8052f57dedea4896aaf07fd97f531d5413a4 | [] | no_license | aquarius20th/nxp-lpc | fe83d6a140d361a1737d950ff728c6ea9a16a1dd | 4abfb804daf0ac9c59bd90d879256e7a3c1b2f30 | refs/heads/master | 2021-01-10T13:54:40.237682 | 2009-12-22T14:54:59 | 2009-12-22T14:54:59 | 48,420,260 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 959 | h |
// ClientChildFrame.h : CClientChildFrame 类的接口
//
#pragma once
#include "SplitterWndExt.h"
class CClientChildFrame : public CBCGPMDIChildWnd
{
DECLARE_DYNCREATE(CClientChildFrame)
public:
CClientChildFrame();
// 属性
public:
CSplitterWndExt m_wndSplitter1;
CBCGPSplitterWnd m_wndSplitter2;
... | [
"lijin.unix@13de9a6c-71d3-11de-b374-81e7cb8b6ca2"
] | [
[
[
1,
46
]
]
] |
321c5bfb7adf92463c7884ed7eedea5befec62e4 | 847cccd728e768dc801d541a2d1169ef562311cd | /externalLibs/angelscript/source/as_scriptfunction.h | 153eebec0e811ed59d14e85312fc8ba7e68ae29d | [] | no_license | aadarshasubedi/Ocerus | 1bea105de9c78b741f3de445601f7dee07987b96 | 4920b99a89f52f991125c9ecfa7353925ea9603c | refs/heads/master | 2021-01-17T17:50:00.472657 | 2011-03-25T13:26:12 | 2011-03-25T13:26:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,916 | h | /*
AngelCode Scripting Library
Copyright (c) 2003-2010 Andreas Jonsson
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 granted to anyone to use this ... | [
"MacJariel@gmail.com"
] | [
[
[
1,
190
]
]
] |
047bf0a06623afedf7c1a35593e69bb616a8d4fc | 89d2197ed4531892f005d7ee3804774202b1cb8d | /Game/Vector.h | ceba97dccf1685aded0bdd09fa545e656d4bc051 | [
"MIT",
"Zlib"
] | permissive | hpidcock/gbsfml | ef8172b6c62b1c17d71d59aec9a7ff2da0131d23 | e3aa990dff8c6b95aef92bab3e94affb978409f2 | refs/heads/master | 2020-05-30T15:01:19.182234 | 2010-09-29T06:53:53 | 2010-09-29T06:53:53 | 35,650,825 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,821 | h | //////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2010 Harry Pidcock
//
// 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 Softwa... | [
"haza55@5bf3a77f-ad06-ad18-b9fb-7d0f6dabd793"
] | [
[
[
1,
214
]
]
] |
42b32ef4d49dcc16cb93e77d16391e7d85f0ec98 | fac8de123987842827a68da1b580f1361926ab67 | /inc/physics/Common/Base/Memory/StackTracer/hkStackTracer.h | 3624c069e62b9e074960971df2882de3caf40c4a | [] | no_license | blockspacer/transporter-game | 23496e1651b3c19f6727712a5652f8e49c45c076 | 083ae2ee48fcab2c7d8a68670a71be4d09954428 | refs/heads/master | 2021-05-31T04:06:07.101459 | 2009-02-19T20:59:59 | 2009-02-19T20:59:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,070 | h | /*
*
* Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
* prior written consent.This software contains code, techniques and know-how which is confidential and proprietary to Havok.
* Level 2 and Level 3 source code contains trade secrets... | [
"uraymeiviar@bb790a93-564d-0410-8b31-212e73dc95e4"
] | [
[
[
1,
52
]
]
] |
9a08f537199cd4cf215c3ee95c4038bf37538595 | f9ed86de48cedc886178f9e8c7ee4fae816ed42d | /src/scenegraph.h | d613fea71882760167febeb18e24289906210c89 | [
"MIT"
] | permissive | rehno-lindeque/Flower-of-Persia | bf78d144c8e60a6f30955f099fe76e4a694ec51a | b68af415a09b9048f8b8f4a4cdc0c65b46bcf6d2 | refs/heads/master | 2021-01-25T04:53:04.951376 | 2011-01-29T11:41:38 | 2011-01-29T11:41:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 368 | h | #ifndef __SCENEGRAPH_H__
#define __SCENEGRAPH_H__
class SceneGraph
{
public:
vector<SceneNode*> nodes;
virtual void draw()
{
//for()
}
~SceneGraph()
{
delete nodes;
}
};
class SceneNode
{
public:
virtual void apply() = 0;
};
class SceneTransformation : public SceneN... | [
"errantkid@gmail.com"
] | [
[
[
1,
32
]
]
] |
a95bba0ddb31241d4522d622311279cd551c6b9d | 9a6a9d17dde3e8888d8183618a02863e46f072f1 | /Method.cpp | b571ace7f66b3d6905c886a4a8938e4fbea983f0 | [] | no_license | pritykovskaya/max-visualization | 34266c449fb2c03bed6fd695e0b54f144d78e123 | a3c0879a8030970bb1fee95d2bfc6ccf689972ea | refs/heads/master | 2021-01-21T12:23:01.436525 | 2011-07-06T18:23:38 | 2011-07-06T18:23:38 | 2,006,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,793 | cpp | #include "stdafx.h"
#include "Method.h"
#include "R32M.H"
vector< vector<double> > Method::single_element_vector(vector<double> v) {
vector< vector<double> > vv;
vv.push_back(v);
return vv;
}
RandomMethod::RandomMethod (int _steps, double _eps, double _p, int bsteps):
numb_of_steps(_steps),
my_eps(... | [
"pritykovskaya@gmail.com"
] | [
[
[
1,
117
]
]
] |
803847dc15275a4f1bbfcf900228ca195f8ba910 | 12849499e019f653b69e2ce6ab266ab4bfa5871c | /Classes/HelloWorldScene.cpp | 0237d43383a747bbde8534dc2d155ee7faa699de | [
"MIT"
] | permissive | galexcode/SimpleGamePart3Cocos2D-x | 8413f0bf8ced19b26698b2450d8c9b3135c433c5 | 0e605b72982ed19ba72a784b4d98653f501583eb | refs/heads/master | 2021-01-16T18:23:41.048601 | 2011-08-17T16:29:00 | 2011-08-17T16:29:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,030 | cpp | #include "HelloWorldScene.h"
#include "SimpleAudioEngine.h"
#include "GameOverScene.h"
#include "Monster.h"
USING_NS_CC;
HelloWorld::~HelloWorld()
{
if (_targets)
{
_targets->release();
_targets = NULL;
}
if (_projectiles)
{
_projectiles->release();
_projectiles = NULL;
}
if (_... | [
"alin.claudiu.radut@gmail.com"
] | [
[
[
1,
317
]
]
] |
446f97a677ec05ecd4cd46057a3446ec753b107d | 7c93f9e101f6bba916bc1a967eb8e787afe9be92 | /7z920/CPP/7zip/Common/MemBlocks.h | 428971cbe6d561585422d79941c88f43caf361da | [] | no_license | ditupao/vx7zip | 95759f909368c14f5b8f9a3cbee18a54dc3eae78 | 13fa94305e8d3491f9d920351e5d1534957a1c06 | refs/heads/master | 2016-08-11T10:55:47.619762 | 2011-06-05T09:50:51 | 2011-06-05T09:50:51 | 47,533,061 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,899 | h | // MemBlocks.h
#ifndef __MEM_BLOCKS_H
#define __MEM_BLOCKS_H
#include "Common/MyVector.h"
#include "Windows/Synchronization.h"
#include "../IStream.h"
class CMemBlockManager
{
void *_data;
size_t _blockSize;
void *_headFree;
public:
CMemBlockManager(size_t blockSize = (1 << 20)): _data(0),... | [
"guolisen@gmail.com"
] | [
[
[
1,
71
]
]
] |
0f13b3d7390cf5200bda212b64f9db5ef404d7ac | a31b42df5677d051e843f32cb536b27ec710cd50 | /Arkane/src/main.cpp | 3dfb55e7518e2dfdcfb7105411b5e2cbbe589569 | [] | no_license | chuckrussell/Project-Volcano | 498ec04deb8a86cbf8c44e612ef24282faa8fa8d | 8f202dfc6bcd65e0523ed52662ed8954c5dda4d2 | refs/heads/master | 2020-04-07T20:45:25.016567 | 2011-02-09T16:20:15 | 2011-02-09T16:20:15 | 1,288,203 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 501 | cpp | #include "System.h"
// the entry point for any Windows program
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
// create the system object
System* system = new System();
// Check if the system object was created.
if(!system) return 0;
// Initialize a... | [
"russellc06@students.ecu.edu",
"stokesj07@Jeffrey-Stokess-iMac.local",
"stokesj07@students.ecu.edu"
] | [
[
[
1,
1
],
[
3,
4
],
[
6,
10
],
[
12,
13
],
[
15,
18
],
[
20,
20
]
],
[
[
2,
2
],
[
5,
5
],
[
11,
11
],
[
14,
14
... |
c6e3b72a2ef33c8dfc24397b34013a60367b6285 | aa56ef00377b2c63a9afb2de1132fc7252ce3dde | /procon/SPSC_RingBufferQueue_TryTest.cpp | 02411e2e121ea2b06ad490e82182b8a6e7d8d1bf | [] | no_license | k06a/procon | 5796fdd9e605b93b3d8ba57362d223182ccd5f12 | 56b35da383a9b4b1f5899e1bc09261315c57f49c | refs/heads/master | 2020-04-06T04:36:12.527471 | 2011-12-28T12:28:50 | 2011-12-28T12:28:50 | 32,887,639 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,837 | cpp | #include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "SPSC_RingBufferQueue_Common.h"
#include "SPSC_RingBufferQueue.h"
//////////////////////////////////////////////////////////////////////////
typedef SPSC_RingBufferQueue<int> IntQueue;
struct Context
{
int N;
IntQueue queue;
Cont... | [
"k06aaa@gmail.com"
] | [
[
[
1,
112
]
]
] |
a6f5f7fef0cf89996b55dcbaa2d03fbf0b5518e0 | cb0268e95542374ff2abf2b9c770d1c106774624 | /modelLoader/Arrays.h | ca0d1d89ac7256cb7814e0236bf9430df5890101 | [] | no_license | xXSingularityXx/Bomber-Rage-3D | a898e046cf93649a052d5c1ad019cc60dd5184ce | 7249c95055ca5df6c05775f8006f307dab5cc856 | refs/heads/master | 2021-01-10T21:20:31.343120 | 2009-12-17T07:54:42 | 2009-12-17T07:54:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,641 | h | #include<iostream>
#include<vector>
using namespace std;
template <class T>
class Array2D
{
vector< vector<T> > array2d;
int col;
int row;
public:
// * Construtor;
Array2D(int row_, int col_): array2d(row_,vector<T>(col_))
{
col = col_;
row = row_;
}
~Array2D()
{
}
vector<T> ... | [
"Samuel@matschulat.(none)"
] | [
[
[
1,
103
]
]
] |
a61e7a4219144590f131d6f37a696c2c9bc5bb3d | a02276848c2bea89526819874c016ff17fc36104 | /MultiExplosionEmitter.h | 15a8bb8d44aa7cc5504109155c89ee59a102cc0c | [] | no_license | AnupGupta/geometrywarsreloaded | ec85ddc07ffd687d5d53c1c9abd4138f7ffcc141 | f6a615c05423c66433e8a85d3497e8386b618d0d | refs/heads/master | 2016-09-01T11:12:37.197796 | 2008-06-04T14:17:44 | 2008-06-04T14:17:44 | 44,064,867 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 518 | h | #ifndef MULTIEXPLOSIONEMITTER_H
#define MULTIEXPLOSIONEMITTER_H
#include "ParticleEmitter.h"
class Timer;
class MultiExplosionEmitter : public ParticleEmitter
{
public:
MultiExplosionEmitter();
~MultiExplosionEmitter();
private:
Timer* m_pFirstWaveEnd;
Timer* m_pSecondWaveEnd;
unsigned int ... | [
"vkalpias@ff6a4cd7-4e4d-0410-b3e6-9b514b4d81ca"
] | [
[
[
1,
27
]
]
] |
75faf34a40e39c5717d4e1b861e9025b983313f8 | 3daaefb69e57941b3dee2a616f62121a3939455a | /mgllib/src/audio/MglOgg.h | a32f7a6c53c632110818ea1aca0c491d995e823c | [] | no_license | myun2ext/open-mgl-legacy | 21ccadab8b1569af8fc7e58cf494aaaceee32f1e | 8faf07bad37a742f7174b454700066d53a384eae | refs/heads/master | 2016-09-06T11:41:14.108963 | 2009-12-28T12:06:58 | 2009-12-28T12:06:58 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,869 | h | //////////////////////////////////////////////////////////
//
// CMglOgg
// - エラー処理付き
//
//////////////////////////////////////////////////////////
#ifndef __MglOgg_H__
#define __MglOgg_H__
#include "MglBgmBase.h"
#include "Vox.h"
#define VOX_LOOP_MAX (0x7fffffff)
#define VOX_DEFAULT_VOLUME (1.0f)
... | [
"myun2@6d62ff88-fa28-0410-b5a4-834eb811a934"
] | [
[
[
1,
79
]
]
] |
df77bed0b66637014f83aae21d4548287399d0c4 | b2c66c8de198d9915dfc63b8c60cb82e57643a6b | /WordsCheater/trunk/Dictionary.cpp | 8e6f41d55b35d0d95e328ceeda320df849558419 | [] | no_license | feleio/words-with-friends-exhaustive-cheater | 88d6d401c28ef7bb82099c0cd9d77459828b89ca | bc198ee2677be02fc935fb8bb8e74b580f0540df | refs/heads/master | 2021-01-02T08:54:47.975272 | 2011-05-10T14:51:06 | 2011-05-10T14:51:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052 | cpp | #include "Dictionary.h"
#include <fstream>
#include <regex>
#include <sstream>
Dictionary::Dictionary( const std::string& dictFilePath )
:m_dictionaryFile( )
{
std::ifstream ifs( dictFilePath );
if( !ifs )
throw std::invalid_argument( __FUNCTION__ "invalid dictionary file path " );
... | [
"lokling@gmail.com@2165158a-c2d0-8582-d542-857db5896f79"
] | [
[
[
1,
38
]
]
] |
b4555bfc91883661465389c035a7b012dd8da6b4 | 8a3fce9fb893696b8e408703b62fa452feec65c5 | /业余时间学习笔记/IOCP/IOClient/Datablock/DataBlockPool.cpp | ec4f24eebaee9868367f07a2d97a7554030c35e6 | [] | no_license | win18216001/tpgame | bb4e8b1a2f19b92ecce14a7477ce30a470faecda | d877dd51a924f1d628959c5ab638c34a671b39b2 | refs/heads/master | 2021-04-12T04:51:47.882699 | 2011-03-08T10:04:55 | 2011-03-08T10:04:55 | 42,728,291 | 0 | 2 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 574 | cpp | #include "StdAfx.h"
#include "DataBlockPool.h"
CDataBlockPool::CDataBlockPool(long lMaxSize)
{
m_pBase = new BYTE [lMaxSize];
if(NULL == m_pBase)
{
printf(" CDataBlockPool ·ÖÅäÄÚ´æ³ö´í ");
}
m_nMaxSize = lMaxSize;
m_nCurSize = 0;
}
CDataBlockPool::~CDataBlockPool(void)
{
if( m_pBase != NU... | [
"tangpeng918@126.com"
] | [
[
[
1,
35
]
]
] |
635e38535c00f09b2e7bd289e9367c100f8d6d2e | cd0987589d3815de1dea8529a7705caac479e7e9 | /webkit/WebKit2/UIProcess/Plugins/PluginInfoStore.h | ced2acf19ef11a80aeb51895698726654c8d0fca | [] | no_license | azrul2202/WebKit-Smartphone | 0aab1ff641d74f15c0623f00c56806dbc9b59fc1 | 023d6fe819445369134dee793b69de36748e71d7 | refs/heads/master | 2021-01-15T09:24:31.288774 | 2011-07-11T11:12:44 | 2011-07-11T11:12:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,315 | h | /*
* Copyright (C) 2010 Apple Inc. All rights reserved.
*
* 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 retain the above copyright
* notice, this list of condi... | [
"sdevitt@rim.com"
] | [
[
[
1,
85
]
]
] |
2d23663b70863fc6c323aace2f76ff1d5256dc31 | 222bc22cb0330b694d2c3b0f4b866d726fd29c72 | /src/brookbox/wm2/WmlPolynomialRootsDeg4.inl | 997797b67366268784a5a28e815b23e0ba9c080a | [
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | darwin/inferno | 02acd3d05ca4c092aa4006b028a843ac04b551b1 | e87017763abae0cfe09d47987f5f6ac37c4f073d | refs/heads/master | 2021-03-12T22:15:47.889580 | 2009-04-17T13:29:39 | 2009-04-17T13:29:39 | 178,477 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,151 | inl | // Magic Software, Inc.
// http://www.magic-software.com
// http://www.wild-magic.com
// Copyright (c) 2003. All Rights Reserved
//
// The Wild Magic Library (WML) source code is supplied under the terms of
// the license agreement http://www.magic-software.com/License/WildMagic.pdf
// and may not be copied or ... | [
"antonin@hildebrand.cz"
] | [
[
[
1,
425
]
]
] |
63b8c017d00b0bb1e6d17d9524ac20c17bbfafe3 | 836523304390560c1b0b655888a4abef63a1b4a5 | /util/base64util.cpp | 86b4ec1cf98dcf56e02bb3b0687712babaa1398c | [] | no_license | paranoiagu/UDSOnlineEditor | 4675ed403fe5acf437ff034a17f3eaa932e7b780 | 7eaae6fef51a01f09d28021ca6e6f2affa7c9658 | refs/heads/master | 2021-01-11T03:19:59.238691 | 2011-10-03T06:02:35 | 2011-10-03T06:02:35 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,855 | cpp | #include "stdafx.h"
#include "base64util.h"
#include <string> // 使用 string 类时须包含这个文件
#include <iostream>
using namespace std;
namespace base64util {
char ntc(unsigned char n){
if (n<26) return 'A'+n;
if (n<52) return 'a'-26+n;
if (n<62) return '0'-52+n;
if (n==62) return '+';
return '/';
... | [
"uukuguy@gmail.com"
] | [
[
[
1,
190
]
]
] |
fa1ae95e52165aa8c93dbbfdd94c414b6bcb5b31 | 6bdb3508ed5a220c0d11193df174d8c215eb1fce | /Codes/Halak/Geom2D.inl | 7c9078d56c58677060b62d6c2c4adfa415e01b1d | [] | no_license | halak/halak-plusplus | d09ba78640c36c42c30343fb10572c37197cfa46 | fea02a5ae52c09ff9da1a491059082a34191cd64 | refs/heads/master | 2020-07-14T09:57:49.519431 | 2011-07-09T14:48:07 | 2011-07-09T14:48:07 | 66,716,624 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,654 | inl | #include <Halak/Math.h>
namespace Halak
{
bool Geom2D::IntersectPointSegment(Vector2 p, Vector2 a, Vector2 b)
{
return GetPointSegmentDistanceSquared(p, a, b) < 0.01f; // ±Ù»ç °ª
}
////////////////////////////////////////////////////////////////////////////////////////////////////
... | [
"halakshin@gmail.com"
] | [
[
[
1,
42
]
]
] |
641a040a36fc6592d0ff13bae95223ebc0bb7dee | 011359e589f99ae5fe8271962d447165e9ff7768 | /src/burn/zet_c68k.cpp | a3c2922726cb2869320807d159b7520317253b1c | [] | no_license | PS3emulators/fba-next-slim | 4c753375fd68863c53830bb367c61737393f9777 | d082dea48c378bddd5e2a686fe8c19beb06db8e1 | refs/heads/master | 2021-01-17T23:05:29.479865 | 2011-12-01T18:16:02 | 2011-12-01T18:16:02 | 2,899,840 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,020 | cpp | // Z80 (Zed Eight-Ty) Interface
#include "burnint.h"
#ifdef EMU_CZ80
#include "cz80.c"
#endif
#ifdef EMU_DOZE
static DozeContext * ZetCPUContext = NULL;
#endif // EMU_DOZE
#ifdef EMU_MAME_Z80
static struct ZetExt * ZetCPUContext = NULL;
static struct ZetExt * lastZetCPUContext = NULL;
#endif
#if... | [
"twinaphex1@gmail.com"
] | [
[
[
1,
966
]
]
] |
124dbce470f3c1f1ba216ed423cff41b4fc0ea1d | 6e016fa119b56ecf0ce40625a651ebba74418b2e | /Sample/CreateDesktop/CreateDesktop.cpp | fd812331b9b9b2ff55b55d7de919d04a169493c8 | [] | no_license | smartdj/multi-desktop-manager | 3d382b2b4105d6666a0bfcbebba9e4540868b86f | 98d79b423389b75223affdbd514ea3a45fe42898 | refs/heads/master | 2016-09-05T12:11:27.996006 | 2010-08-01T14:42:39 | 2010-08-01T14:42:39 | 37,246,600 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,148 | cpp | // CreateDesktop.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <windows.h>
#pragma comment(lib,"User32.lib")
_TCHAR _Explorer[520];
void WINAPI CreateNewDesktop( LPVOID lpParam)
{
HWINSTA winsta = GetProcessWindowStation();
SetProcessWindowStation(winsta);
_T... | [
"angelipin@7ff612aa-105e-4e35-adfd-5cdac6c44c12"
] | [
[
[
1,
43
]
]
] |
51456618ded5fc9c699299c357583793004e1ce7 | 78fb44a7f01825c19d61e9eaaa3e558ce80dcdf5 | /guceCORE/src/CVFSHandleToDataStream.cpp | 566ac89d4a76ef00eb4473574bd6198326a97307 | [] | no_license | LiberatorUSA/GUCE | a2d193e78d91657ccc4eab50fab06de31bc38021 | a4d6aa5421f8799cedc7c9f7dc496df4327ac37f | refs/heads/master | 2021-01-02T08:14:08.541536 | 2011-09-08T03:00:46 | 2011-09-08T03:00:46 | 41,840,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,565 | cpp | /*
* guceCORE: GUCE module providing tie-in functionality between systems
* Copyright (C) 2002 - 2008. Dinand Vanvelzen
*
* 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;... | [
"LiberatorUSA@users.noreply.github.com"
] | [
[
[
1,
110
]
]
] |
831f72f66ffd3739186aa47f55756bf028e7feee | c86f787916e295d20607cbffc13c524018888a0f | /tp3/codigo/mainCasoBorde/mainCasoBorde.cpp | e36ade3a67ad82263812078cac954a4ffdaaf9e3 | [] | no_license | federicoemartinez/algo3-2008 | 0039a4bc6d83ab8005fa2169b919e6c03524bad5 | 3b04cbea4583d76d7a97f2aee72493b4b571a77b | refs/heads/master | 2020-06-05T05:56:20.127248 | 2008-08-04T04:59:32 | 2008-08-04T04:59:32 | 32,117,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,572 | cpp | #include <iostream>
#include <cstdlib>
#include <string>
#include "FiltroGrafos.h"
#include "SolucionExacta.h"
#include "Grasp.h"
#include "cmdline/CmdLine.h"
using namespace std;
void help() {
cout << "Uso: ./cruces <params>" << endl;
cout << " -i inicio: cantidad de nodos del primer caso a ejecutar" << en... | [
"HadesKleizer@bfd18afd-6e49-0410-abef-09437ef2666c"
] | [
[
[
1,
283
]
]
] |
749cc033cd43f3039b948ed0da68e19b9f4328b8 | 51e4aeb0d5e29ae1e8a9d8cf467797da2054b0f1 | /src/arenaView.hpp | 302bc19cfc449822cb8ff3d43229eaba5dc10ffc | [] | no_license | vashero/tachyon-game | b3340272ee58c11077eef077485f8a01e4c81881 | 5fc2daac314c0b3b19b7336f8eb29d81a5e05729 | refs/heads/master | 2016-09-09T23:47:14.315285 | 2009-05-10T17:47:53 | 2009-05-10T17:47:53 | 32,647,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,482 | hpp | /*==============================================================
* Copyright (c) 2009 Blake Fisher. All Rights Reserved.
*
* This software is released under the BSD License
* <http://www.opensource.org/licenses/bsd-license.php>
*==============================================================
*/
#pragma onc... | [
"bfisher@ualberta.net@b90cb52e-2f47-11de-8816-6191455234fe"
] | [
[
[
1,
83
]
]
] |
474effb1cef10c8782183e6c5ea7989b6ef4be60 | ab582de0495f9b016e4602b578c3e9e2475bec44 | /src/game/client/hl2/c_weapon__stubs_hl2.cpp | 74176d04eb8657847226d48f8c3f1a26530d27b3 | [] | no_license | lion7/millerslake | bf9e36493b10d5ac4619a0d59f4cfb0983bf0470 | 186ec556b5066c306c5735ab7efe136f1ce03019 | refs/heads/master | 2021-04-09T17:14:25.666942 | 2010-12-04T02:13:54 | 2010-12-04T02:13:54 | 32,201,552 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,318 | cpp | //========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "c_weapon__stubs.h"
#include "basehlcombatweapon_shared.h"
#include "c_basehlcombatweapon.h... | [
"gdeleeuw7@gmail.com@1b4041a7-fb09-ea03-7d66-d8ed986ac175"
] | [
[
[
1,
49
]
]
] |
6c393313fe68f1dfba91ff1e5b47b0c7abdb21bd | fcdddf0f27e52ece3f594c14fd47d1123f4ac863 | /TeCom/src/TdkLayout/Header Files/TdkLayoutBarcodeObject.h | 44aea9d7128b7355fbaa7b651ac04db45cb370d6 | [] | no_license | radtek/terra-printer | 32a2568b1e92cb5a0495c651d7048db6b2bbc8e5 | 959241e52562128d196ccb806b51fda17d7342ae | refs/heads/master | 2020-06-11T01:49:15.043478 | 2011-12-12T13:31:19 | 2011-12-12T13:31:19 | null | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 1,055 | h | /******************************************************************************
* FUNCATE - GIS development team
*
* TerraLib Components - TeCOM
*
* @(#) TdkLayoutBarcodeObject.h
*
*******************************************************************************
*
* $Rev$:
*
* $Author: rui.gregorio $:
*
* ... | [
"rui.mauricio.gregorio@gmail.com@58180da6-ba8b-8960-36a5-00cc02a3ddec"
] | [
[
[
1,
43
]
]
] |
8fd9987ea56adf9dcbdb79d0d378ed22ba293bce | 5424018aa2443f3ad7688fb27afc67ffb6172f81 | /cppx/cppx.cpp | e7628758eec28d4a3c490677320582c0afc86f8b | [] | no_license | Amakata/wajima | f9ed0b980df70ca9738bac6d381948e0fa2b318f | 6c58b04efa0c45eb0a2f21d67b79d5058c13f586 | refs/heads/master | 2021-01-17T06:24:37.237575 | 2005-01-09T08:24:04 | 2005-01-09T08:24:04 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 7,516 | cpp | #include <iostream>
#include <vector>
#include <string>
#include <list>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/convenience.hpp>
#include <boost/filesystem/exception.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/date_time/posix... | [
"ama@0d65b87a-bfcd-0310-b916-82c895c6ade2"
] | [
[
[
1,
203
]
]
] |
7b9ab065bc8738659612cb99e8aa5366c6c044db | 6bdb3508ed5a220c0d11193df174d8c215eb1fce | /Codes/Halak/UISequentialEventHandler.h | f75116c3aa409277ae3b46d36b8ff10d378d1e0c | [] | no_license | halak/halak-plusplus | d09ba78640c36c42c30343fb10572c37197cfa46 | fea02a5ae52c09ff9da1a491059082a34191cd64 | refs/heads/master | 2020-07-14T09:57:49.519431 | 2011-07-09T14:48:07 | 2011-07-09T14:48:07 | 66,716,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,387 | h | #pragma once
#ifndef __HALAK_UISEQUENTIALEVENTHANDLER_H__
#define __HALAK_UISEQUENTIALEVENTHANDLER_H__
# include <Halak/FWD.h>
# include <Halak/UIEventHandler.h>
# include <vector>
namespace Halak
{
class UISequentialEventHandler : public UIEventHandler
{
public:
... | [
"halakshin@gmail.com"
] | [
[
[
1,
43
]
]
] |
14ee5e2b7bb958260fd9c108276007436b56286b | c3a0cf3d0c023cbdb9a1ab8295aa1231543d83e7 | /sln/src/FbgBlock.cpp | 646369d8a4674f38cfcf686bbd0a5360a4f4aa47 | [] | no_license | yakergong/seedcup2008 | 2596cdb5fe404ef8628366cdd2f8003141625264 | e57b92cf576900ba6cb5e0c0f6661bba3e7f75d7 | refs/heads/master | 2016-09-05T11:06:12.717346 | 2008-12-19T13:04:28 | 2008-12-19T13:04:28 | 32,268,668 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,714 | cpp | /*
* Falling Block Game
* Copyright (C) 1999-2002 Jared Krinke <http://derajdezine.vze.com/>
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 or (at your option) any later version
* as published by the Free So... | [
"yakergong@c3067968-ca50-11dd-8ca8-e3ff79f713b6"
] | [
[
[
1,
445
]
]
] |
57a2bfb152dbc11c198bab7c5bf2227253098c57 | f55665c5faa3d79d0d6fe91fcfeb8daa5adf84d0 | /Depend/MyGUI/MyGUIEngine/include/MyGUI_ILogListener.h | 2ee237539edd75e68f5d9bb507a8ec820e594e69 | [] | no_license | lxinhcn/starworld | 79ed06ca49d4064307ae73156574932d6185dbab | 86eb0fb8bd268994454b0cfe6419ffef3fc0fc80 | refs/heads/master | 2021-01-10T07:43:51.858394 | 2010-09-15T02:38:48 | 2010-09-15T02:38:48 | 47,859,019 | 2 | 1 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,498 | h | /*!
@file
@author Albert Semenov
@date 04/2010
*/
/*
This file is part of MyGUI.
MyGUI 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 opti... | [
"albertclass@a94d7126-06ea-11de-b17c-0f1ef23b492c"
] | [
[
[
1,
50
]
]
] |
e3b37b68bcc3b4d7f6b03da47cc148aadd9e03d0 | b14d5833a79518a40d302e5eb40ed5da193cf1b2 | /cpp/extern/xercesc++/2.6.0/src/xercesc/validators/datatype/DateDatatypeValidator.cpp | 28524251e1d9226b435b58c29c92ebfaa2e4986b | [
"Apache-2.0"
] | permissive | andyburke/bitflood | dcb3fb62dad7fa5e20cf9f1d58aaa94be30e82bf | fca6c0b635d07da4e6c7fbfa032921c827a981d6 | refs/heads/master | 2016-09-10T02:14:35.564530 | 2011-11-17T09:51:49 | 2011-11-17T09:51:49 | 2,794,411 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,171 | cpp | /*
* Copyright 2001,2004 The Apache Software Foundation.
*
* 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 re... | [
"aburke@bitflood.org"
] | [
[
[
1,
151
]
]
] |
15342caa17a90c9954e2a075d0cd00e8a184164f | a6f42311df3830117e9590e446b105db78fdbd3a | /src/framework/base/Math.hpp | 69c4460ceba39ff47333a79eb2267913a529b067 | [] | no_license | wellsoftware/temporal-lightfield-reconstruction | a4009b9da01b93d6d77a4d0d6830c49e0d4e225f | 8d0988b5660ba0e53d65e887a51e220dcbc985ca | refs/heads/master | 2021-01-17T23:49:05.544012 | 2011-09-25T10:47:49 | 2011-09-25T10:47:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 66,627 | hpp | /*
* Copyright (c) 2009-2011, NVIDIA Corporation
* 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
* ... | [
"jiawen@csail.mit.edu"
] | [
[
[
1,
1052
]
]
] |
1a72d53c97bf6b463e318a5ebf10219a9373c818 | 886d53dfd22fff2dda2e021d0dc8035723ed60ef | /private/tasks/1049/gomilton.cpp | 2d3980aade92906e665e9176fa32fa5eba906d96 | [] | no_license | stden/dm-judge | 0d3a373349bc7c7b7e1a43cb8c451fbba10fea9b | 2dbf7429694441c8447aad09a3d528283d034dfc | refs/heads/master | 2021-01-10T03:28:24.820940 | 2011-01-29T23:02:25 | 2011-01-29T23:02:25 | 45,978,812 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,327 | cpp | #include<stdio.h>
#include<conio.h>
#include<iostream.h>
#include<stdlib.h>
FILE *fin,*fout;
static int count;
static int bestcx,bestcy;
static int record=-1;
static int*arraycol;
static int*arrayrow;
static int firstusel;
struct rebro
{
int exist;
int lenght;
};
int privedenie(rebro*);
int find(rebro... | [
"super.denis@gmail.com"
] | [
[
[
1,
195
]
]
] |
4eb9ae4f1b211db8ca3372368c4af7d33ab91102 | c9390a163ae5f0bc6fdc1560be59939dcbe3eb07 | /TAFadeInOut.h | 3c03d122e71bcfbde01125db667d23c5e4018382 | [] | no_license | trimpage/multifxvst | 2ceae9da1768428288158319fcf03d603ba47672 | 1cb40f8e0cc873f389f2818b2f40665d2ba2b18b | refs/heads/master | 2020-04-06T13:23:41.059632 | 2010-11-04T14:32:54 | 2010-11-04T14:32:54 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 1,049 | h | #pragma once
class CTAFadeInOut
{
public:
CTAFadeInOut(void);
virtual ~CTAFadeInOut(void);
//#### Configuration ####
void SetFadeIn(float start = 1.0,float stop = 0.0);
void SetSampleRate(double samplerate);//futur use
void SetFadeLenght(double lenght_ms) ;//futur use
void SetFadeOut(float s... | [
"CTAF@3e78e570-a0aa-6544-9a6b-7e87a0c009bc"
] | [
[
[
1,
36
]
]
] |
df5bd12903acdf77ca4c1060efddc79cdd900c73 | 86c8c65dd5d7c07b46f134f6df76d5127e9428ff | /015.cpp | 748578f53d668e559c7554403b9e271ebee8c212 | [] | no_license | kyokey/MIPT | 2d2fc233475e414b33fe889594929be6af696b92 | f0dcc64731deaf5d0f0949884865216c15c15dbe | refs/heads/master | 2020-04-27T09:10:48.472859 | 2011-01-04T16:35:26 | 2011-01-04T16:35:26 | 1,219,926 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,360 | cpp | #include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmat... | [
"pq@pq-laptop.(none)"
] | [
[
[
1,
66
]
]
] |
75c8978438187015f9a96295adcec53140398b33 | c0bd82eb640d8594f2d2b76262566288676b8395 | /src/game/AuctionMgr.h | 8056ae29b7b0117e84fbbfdf90d4e8652f35bc70 | [
"FSFUL"
] | permissive | vata/solution | 4c6551b9253d8f23ad5e72f4a96fc80e55e583c9 | 774fca057d12a906128f9231831ae2e10a947da6 | refs/heads/master | 2021-01-10T02:08:50.032837 | 2007-11-13T22:01:17 | 2007-11-13T22:01:17 | 45,352,930 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 472 | h | #ifndef __AUCTIONMGR_H
#define __AUCTIONMGR_H
class AuctionMgr : public Singleton < AuctionMgr >
{
public:
AuctionMgr();
~AuctionMgr();
void AddAuctionHouse(AuctionHouse* ah);
AuctionHouse* GetAuctionHouseByEntry(uint32 entry);
AuctionHouse* GetAuctionHouse(uint32 ahid);
void LoadFr... | [
"tdiddi@web.de"
] | [
[
[
1,
21
]
]
] |
b7f167c408f370db60c4a3b3ae6e87b52b227691 | 7f72fc855742261daf566d90e5280e10ca8033cf | /branches/full-calibration/ground/src/libs/qymodem/src/qymodemsend.h | 7f902d6af1d2532a74ed295dfe86b18fb75b702d | [] | no_license | caichunyang2007/my_OpenPilot_mods | 8e91f061dc209a38c9049bf6a1c80dfccb26cce4 | 0ca472f4da7da7d5f53aa688f632b1f5c6102671 | refs/heads/master | 2023-06-06T03:17:37.587838 | 2011-02-28T10:25:56 | 2011-02-28T10:25:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,800 | h | /**
******************************************************************************
*
* @file qymodemsend.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
* @brief
* @see The GNU Public License (GPL) Version 3
* @defgroup ymodem_lib
* @{
*
**************... | [
"jonathan@ebee16cc-31ac-478f-84a7-5cbb03baadba"
] | [
[
[
1,
61
]
]
] |
84b3919ff99cdf1ed1352f48f80517c87b3fe086 | b67d58bd5bfe13b32bebe83dec22904243a52223 | /FlashDBSimDll_Sample/LRU.cpp | 0388d2bbd0a9c33a8fa30e7a8c6e89ac89036dc1 | [] | no_license | maheshdharhari/flash-sim | b8929efc83a65ee6d5e782b835106ca36228c6c8 | d04eb0e34bb44e7356f5c1b0e1f1af6097339225 | refs/heads/master | 2021-01-10T07:48:37.820361 | 2010-05-22T09:19:20 | 2010-05-22T09:19:20 | 43,440,579 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 10,457 | cpp | #include "stdafx.h"
#include "LRU.h"
LRU::LRU()
{
for (int i = 0; i < DEFBUFSIZE; i++)
{
ftop[i] = -1;
ptob[i] = NULL;
memset(buf[i].field,'\0',FRAMESIZE);
}
lru = NULL;
mru = lru;
hit = 0;
total = 0;
flashreadcount = 0;
flashwritecount = 0;
}
LRU::~LRU()
{
//释放lru链表
LRUElement ... | [
"hiyoungcat@9895585c-9ddb-11de-bf4a-bd5be0e2b6d7"
] | [
[
[
1,
576
]
]
] |
bd6b24066cf80a9cb58c6c2eba8b6bc4e2404849 | c0bd82eb640d8594f2d2b76262566288676b8395 | /src/game/SocialMgr.cpp | a69383acdc99e1127d77d9bdc189802e68b86207 | [
"FSFUL"
] | permissive | vata/solution | 4c6551b9253d8f23ad5e72f4a96fc80e55e583c9 | 774fca057d12a906128f9231831ae2e10a947da6 | refs/heads/master | 2021-01-10T02:08:50.032837 | 2007-11-13T22:01:17 | 2007-11-13T22:01:17 | 45,352,930 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 20,200 | cpp | // Copyright (C) 2004 WoW Daemon
//
// 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 dis... | [
"tdiddi@web.de"
] | [
[
[
1,
637
]
]
] |
8de1b21e5d37bcc00470fe7e8823f6be15151754 | 49c3e5b830831e11cf2bcd61bb7f421a42c0cda9 | /src/ofxKCore/src/Communication/TUIO.cpp | 3b1ffa326dda158db1e01e4c6f294f0e483b5692 | [] | no_license | presende/KinectCoreVision | 982ac03633a8ec41d25ed52d3ebe0ed49f328d68 | 97127f29f052f8047295a62e11443b9339cb7200 | refs/heads/master | 2021-01-15T20:12:59.723395 | 2011-09-09T14:26:27 | 2011-09-09T14:26:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,438 | cpp | /*
* TUIO.h
*
*
* Created on 2/2/09.
* Copyright 2009 NUI Group. All rights reserved.
*
*/
#include "TUIO.h"
TUIO::TUIO(){
}
TUIO::~TUIO(){
// this could be useful for whenever we get rid of an object
}
void TUIO::setup(const char* host, int port, int flashport) {
localHost = host;
TU... | [
"patriciogonzalezvivo@gmail.com"
] | [
[
[
1,
396
]
]
] |
ee17e83514b3c7e216aff56bb8e39f731f3aec78 | e31046aee3ad2d4600c7f35aaeeba76ee2b99039 | /trunk/libs/bullet/includes/BulletCollision/CollisionDispatch/btCollisionObject.h | ee5fc27f85f0a5d9a9ef1891cb99e83f8ec6f1e6 | [] | no_license | BackupTheBerlios/trinitas-svn | ddea265cf47aff3e8853bf6d46861e0ed3031ea1 | 7d3ff64a7d0e5ba37febda38e6ce0b2d0a4b6cca | refs/heads/master | 2021-01-23T08:14:44.215249 | 2009-02-18T19:37:51 | 2009-02-18T19:37:51 | 40,749,519 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,814 | h | /*
Bullet Continuous Collision Detection and Physics Library
Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/
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.
P... | [
"paradoxon@ab3bda7c-5b37-0410-9911-e7f4556ba333"
] | [
[
[
1,
384
]
]
] |
945fa38c51f41bc0915f649dd70aa11535bc229f | 74c8da5b29163992a08a376c7819785998afb588 | /NetAnimal/Game/wheel/MyWheelDirector/src/DUI/Dan.cpp | a47207636f354d249c6daa989ec5845afb43f088 | [] | no_license | dbabox/aomi | dbfb46c1c9417a8078ec9a516cc9c90fe3773b78 | 4cffc8e59368e82aed997fe0f4dcbd7df626d1d0 | refs/heads/master | 2021-01-13T14:05:10.813348 | 2011-06-07T09:36:41 | 2011-06-07T09:36:41 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 10,068 | cpp | #include "MyWheelDirectorStableHeaders.h"
#include "DUI/Dan.h"
#include "F5TableInterface.h"
#include "LockInterface.h"
#include "CodingFormatInterface.h"
#include "DataServerInterface.h"
#include "GSMInterface.h"
using namespace Orz;
DanLine::DanLine(void)
{
}
DanLine::~DanLine(void)
{
}
void DanLine::... | [
"ogre3d@yeah.net"
] | [
[
[
1,
406
]
]
] |
df88f466df02e6650b4548756142010684bd4f7e | 3128346a72b842c6dd94f2b854170d5daeeedc6f | /src/CoreDynBody.h | 039f347a8ae5a8e37a6f24b5bf003ae3d2f0ba7f | [] | no_license | Valrandir/Core512 | 42c3ed02f3f5455a9e0d722c014c80bb2bae17ab | af6b45aa2eded3f32964339ffebdab3491b08561 | refs/heads/master | 2021-01-22T04:57:15.719013 | 2011-11-11T05:16:30 | 2011-11-11T05:16:30 | 2,607,600 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 471 | h | #pragma once
#include "CoreBody.h"
class CoreDynBody : public CoreBody
{
BOOL Initialized;
static float GlobalFriction;
CoreVector Velocity;
public:
CoreDynBody();
CoreDynBody(const CoreVector& Center, const CoreTexture& Texture);
void Initialize(const CoreVector& Center, const CoreTexture& Texture... | [
"valrandir@voxcel.net"
] | [
[
[
1,
19
]
]
] |
cd64a8ee0aff36e9ce5513f925307cd77adaad31 | 13a683bacff74be42a305f22401cf1a25fcab751 | /src/generateHyp.cpp | f7b942aebd486adbab1764c85402e601cdb9f9ae | [] | no_license | ivan444/overlapping-object-recognition | e15b4b5e86cdf7305ff5e710d3b3678f11d275bb | 3638f20bd254a5598ceefc22bf99d9af33d7a452 | refs/heads/master | 2016-09-15T20:33:38.210079 | 2011-01-28T03:28:56 | 2011-01-28T03:28:56 | 33,362,592 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 4,341 | cpp | #include <iostream>
#include <string>
#include "imageIO.h"
#include "openCVJpegIO.h"
#include "edgeSegmentator.h"
//#include "paramVector.h"
#include "generateHyp.h"
#include "math.h"
#include "image.h"
#define M_PI 3.14159265358979323846
#define sk 0.1
#define sa 0.1
#define sx 0.1
#define sy 0.... | [
"mistylights@gmail.com@6100b896-52a2-3748-62e0-4fb15095d2ea",
"tomislav.babic@fer.hr@6100b896-52a2-3748-62e0-4fb15095d2ea",
"ivan.kristo@6100b896-52a2-3748-62e0-4fb15095d2ea"
] | [
[
[
1,
5
],
[
7,
8
],
[
11,
12
],
[
18,
19
],
[
29,
29
],
[
55,
59
],
[
61,
65
],
[
67,
78
],
[
86,
86
],
[
92,
97
]... |
662a397ae220bfc0ca786837d3030506475d69af | 14a00dfaf0619eb57f1f04bb784edd3126e10658 | /lab4/GUI.h | e9c91babd6b44a2556afa9e310bc0f8eb3303c24 | [] | no_license | SHINOTECH/modanimation | 89f842262b1f552f1044d4aafb3d5a2ce4b587bd | 43d0fde55cf75df9d9a28a7681eddeb77460f97c | refs/heads/master | 2021-01-21T09:34:18.032922 | 2010-04-07T12:23:13 | 2010-04-07T12:23:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,439 | h | /*************************************************************************************************
*
* Modeling and animation (TNM079) 2007
* Code base for lab assignments. Copyright:
* Gunnar Johansson (gunnar.johansson@itn.liu.se)
* Ken Museth (ken.museth@itn.liu.se)
* Michael Bang Nielsen (bang@dai... | [
"onnepoika@da195381-492e-0410-b4d9-ef7979db4686",
"jpjorge@da195381-492e-0410-b4d9-ef7979db4686"
] | [
[
[
1,
33
],
[
35,
83
],
[
87,
135
]
],
[
[
34,
34
],
[
84,
86
]
]
] |
17e31cec2a61f3f2135685e3a74d4f317e9b2bb1 | 45229380094a0c2b603616e7505cbdc4d89dfaee | /ga/gaul-devel-0.1850-0/ess_01/Form1.h | 4378f0fa53b9ff1c15051896f8b819fd24cf5c98 | [] | no_license | xcud/msrds | a71000cc096723272e5ada7229426dee5100406c | 04764859c88f5c36a757dbffc105309a27cd9c4d | refs/heads/master | 2021-01-10T01:19:35.834296 | 2011-11-04T09:26:01 | 2011-11-04T09:26:01 | 45,697,313 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,437 | h | #pragma once
#pragma unmanaged
#include "essworld.h"
#pragma managed
namespace ess_01 {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Collections::Generic;
using namespace System::Windows::Forms;
using namespace Syste... | [
"perpet99@gmail.com",
"perpet99@cc61708c-8d4c-0410-8fce-b5b73d66a671"
] | [
[
[
1,
12
],
[
14,
50
],
[
52,
70
],
[
72,
76
],
[
78,
78
],
[
80,
86
],
[
97,
98
],
[
100,
100
],
[
103,
113
],
[
115,
... |
c9675cb37142deee1177c359e4b822d560615d2e | a7985fd90271731c73cab45029ee9a9903c8e1a2 | /client/westley.hennigh_cs260/westley.hennigh_cs260/Jobs.cpp | ace33b50f13ebcc4de829ccb393ccc65e9f2c7c1 | [] | no_license | WestleyArgentum/cs260-networking | 129039f7ad2a89b9350ddcac0cc50a17c6f74bf7 | 36d2d34400ad93906e2b4839278e4b33de28ae8b | refs/heads/master | 2021-01-01T05:47:12.910324 | 2010-04-07T07:01:40 | 2010-04-07T07:01:40 | 32,187,121 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,271 | cpp | #include "Jobs.h"
sendJob::sendJob(std::string filename, unsigned filesize, unsigned loPort_, std::string remoteuser, std::string IP_ /*= std::string()*/, unsigned rePort_ /*= 0*/ )
:data(filename, filesize), sSock(NULL), loPort(loPort_), IP(IP_), rePort(rePort_), currChunk(0), remote_user(remoteuser)
{
// set ... | [
"knuxjr@1f2afcba-5144-80f4-e828-afee2f9acc6f",
"westleyargentum@gmail.com@1f2afcba-5144-80f4-e828-afee2f9acc6f",
"westleyargentum@1f2afcba-5144-80f4-e828-afee2f9acc6f"
] | [
[
[
1,
1
],
[
3,
5
],
[
8,
8
],
[
11,
12
],
[
15,
16
],
[
27,
35
],
[
62,
63
],
[
65,
66
],
[
77,
78
],
[
80,
81
],
... |
bfb3bea20983938429ad47a1de5cec52f33683dd | fac8de123987842827a68da1b580f1361926ab67 | /inc/physics/Common/Base/System/Io/Writer/SubStream/hkSubStreamWriter.h | ab11527e91e0bcc44e1362768a155c0ceab1cb61 | [] | no_license | blockspacer/transporter-game | 23496e1651b3c19f6727712a5652f8e49c45c076 | 083ae2ee48fcab2c7d8a68670a71be4d09954428 | refs/heads/master | 2021-05-31T04:06:07.101459 | 2009-02-19T20:59:59 | 2009-02-19T20:59:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,874 | h | /*
*
* Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
* prior written consent.This software contains code, techniques and know-how which is confidential and proprietary to Havok.
* Level 2 and Level 3 source code contains trade secrets... | [
"uraymeiviar@bb790a93-564d-0410-8b31-212e73dc95e4"
] | [
[
[
1,
94
]
]
] |
1e92487d773f3d3375b0539a80cb97d5e941550d | 1cc5720e245ca0d8083b0f12806a5c8b13b5cf98 | /v106/p1/c.cpp | 8dcef0819b89c7fb6c91a8276ec646699a75462a | [] | no_license | Emerson21/uva-problems | 399d82d93b563e3018921eaff12ca545415fd782 | 3079bdd1cd17087cf54b08c60e2d52dbd0118556 | refs/heads/master | 2021-01-18T09:12:23.069387 | 2010-12-15T00:38:34 | 2010-12-15T00:38:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,532 | cpp | #include <iostream>
#include <string.h>
using namespace std;
int c,l;
int cid[101][101];
int fila[200];
int fs,fe;
int vis[200];
#define empilha(az,t) fila[fe++] = az; vis[az] = t;
#define des() (fila[fs++])
bool start() {
memset(fila,-1,sizeof(fila));
memset(vis,-1,sizeof(vis));
fe = fs =... | [
"guilherme.silveira@caelum.com.br"
] | [
[
[
1,
84
]
]
] |
cc34902a049eab625fc97b7871fb5651b624a5e5 | d60e8cf5de9384449a9b6a643bfe4c1d2339b1ae | /windows/src/nxt++.cpp | d9ddcc07b96d566fb54181dfdecfa4f854ceff91 | [] | no_license | tizar/lego | 165ec2ac333bed642d96a33db77ab7d00ffbfba9 | 351c8824b3457f4735cf65ec4740d1c9fc89dd21 | refs/heads/master | 2016-09-08T05:06:23.607494 | 2011-03-03T10:46:31 | 2011-03-03T10:46:31 | 1,434,570 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,885 | cpp | #include "NXT++.h"
using namespace NXT;
using namespace NXT::File;
using namespace NXT::Module;
using namespace NXT::Motor;
using namespace NXT::Sensor;
using namespace NXT::NxtCam;
bool NXT::Open(Comm::NXTComm* comm)
{
return comm->Open();
}
bool NXT::OpenBT(Comm::NXTComm* comm)
{
return comm->Ope... | [
"riza.milis@gmail.com"
] | [
[
[
1,
719
]
]
] |
5c06b465ac1a251a91ed17cf06449007579aebca | 8a8873b129313b24341e8fa88a49052e09c3fa51 | /src/ImageEngine.cpp | 6602cc039acc92b142c385bcb419bd7008cd26a1 | [] | no_license | flaithbheartaigh/wapbrowser | ba09f7aa981d65df810dba2156a3f153df071dcf | b0d93ce8517916d23104be608548e93740bace4e | refs/heads/master | 2021-01-10T11:29:49.555342 | 2010-03-08T09:36:03 | 2010-03-08T09:36:03 | 50,261,329 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,835 | cpp | /*
============================================================================
Name : ImageEngine.cpp
Author : 浮生若茶
Version :
Copyright : Your copyright notice
Description : CImageEngine implementation
============================================================================
*/
#incl... | [
"sungrass.xp@37a08ede-ebbd-11dd-bd7b-b12b6590754f"
] | [
[
[
1,
238
]
]
] |
4efa50c5bc6b3b5038f8afa96d8a2c5ebbc8cff5 | 1c9f99b2b2e3835038aba7ec0abc3a228e24a558 | /Projects/elastix/elastix_sources_v4/src/Components/Optimizers/FiniteDifferenceGradientDescent/itkFiniteDifferenceGradientDescentOptimizer.cxx | d8a03dd03db134f4889b78e588b123db8684efff | [] | no_license | mijc/Diploma | 95fa1b04801ba9afb6493b24b53383d0fbd00b33 | bae131ed74f1b344b219c0ffe0fffcd90306aeb8 | refs/heads/master | 2021-01-18T13:57:42.223466 | 2011-02-15T14:19:49 | 2011-02-15T14:19:49 | 1,369,569 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,067 | cxx | /*======================================================================
This file is part of the elastix software.
Copyright (c) University Medical Center Utrecht. All rights reserved.
See src/CopyrightElastix.txt or http://elastix.isi.uu.nl/legal.php for
details.
This software is distributed W... | [
"maik.stille@gmail.com"
] | [
[
[
1,
310
]
]
] |
10703d6df3a1df5ffb7b85fa8eaa42078cbd9de6 | c2a70374051ef8f96105d65c84023d97c90f4806 | /bin/src/loadBmp/common/Filter/plfilterthreshold.cpp | d6464afa40aba660ff14901f58fc08e4ce7ef32a | [] | no_license | haselab-net/SpringheadOne | dcf6f10cb1144b17790a782f519ae25cbe522bb2 | 004335b64ec7bea748ae65a85463c0e85b98edbd | refs/heads/master | 2023-08-04T20:27:17.158435 | 2006-04-15T16:49:35 | 2006-04-15T16:49:35 | 407,701,182 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,445 | cpp | /*
/--------------------------------------------------------------------
|
| $Id: plfilterthreshold.cpp,v 1.7 2004/06/15 10:26:13 uzadow Exp $
|
| Copyright (c) 2000-2001 Iyad Hatem
|
\--------------------------------------------------------------------
*/
#include "plstdpch.h"
#include "plfiltert... | [
"jumius@05cee5c3-a2e9-0310-9523-9dfc2f93dbe1"
] | [
[
[
1,
109
]
]
] |
dc2aab7092837c746902f0a97ed824ef0d60c4f6 | 2491785c62428a8b3d935a57dd71c91919d7a73c | /Exercises/Week01/Jazz/Ex-01-05.cpp | 3c0956672d9dddc257293483cc58cc3ffaad00b1 | [] | no_license | lsk/DTU-ComputerGraphics | 2588cb7c96fff091b3818525eea277e5bb19784c | 57089b4d9ab101748013daf678e5b5656553e326 | refs/heads/master | 2021-01-18T10:48:11.001195 | 2011-09-28T09:50:02 | 2011-09-28T09:50:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,886 | cpp | /*
* The program draws a circle.
*
*/
#include <GL/glut.h>
#include <math.h>
#define SEGS 100
#define CENTRE_X 0
#define CENTRE_Y 0
#define RADIUS 5.0
void Init (void);
void Display (void);
void Reshape (int w, int h);
void computeCircleVertices (double, double, float, double... | [
"jazzinghen@gmail.com"
] | [
[
[
1,
124
]
]
] |
679e84675b764df6e2683eb1e4475a5f93966b63 | b8ac0bb1d1731d074b7a3cbebccc283529b750d4 | /Code/controllers/Tcleaner/protocol/packets/GroupPacket.cpp | 8dea8aa12d58b2c7a22e1831088ebadf18f318c3 | [] | no_license | dh-04/tpf-robotica | 5efbac38d59fda0271ac4639ea7b3b4129c28d82 | 10a7f4113d5a38dc0568996edebba91f672786e9 | refs/heads/master | 2022-12-10T18:19:22.428435 | 2010-11-05T02:42:29 | 2010-11-05T02:42:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,413 | cpp | // Class automatically generated by Dev-C++ New Class wizard
#include <protocol/packets/GroupPacket.h> // class's header file
#include <string.h>
namespace protocol {
namespace packets {
// class constructor
GroupPacket::GroupPacket(char groupid)
{
this->groupid = groupid;
// insert your code here
}
... | [
"guicamest@d69ea68a-f96b-11de-8cdf-e97ad7d0f28a",
"nachogoni@d69ea68a-f96b-11de-8cdf-e97ad7d0f28a"
] | [
[
[
1,
61
],
[
63,
66
],
[
68,
72
]
],
[
[
62,
62
],
[
67,
67
]
]
] |
c60301fe74dfde830b0e3fc8b998431387ae1483 | 33f59b1ba6b12c2dd3080b24830331c37bba9fe2 | /Depend/Foundation/Distance/Wm4DistLine3Segment3.h | 432113c1d61ac3be2c4d53e2d8ef6db9928f9ca7 | [] | no_license | daleaddink/flagship3d | 4835c223fe1b6429c12e325770c14679c42ae3c6 | 6cce5b1ff7e7a2d5d0df7aa0594a70d795c7979a | refs/heads/master | 2021-01-15T16:29:12.196094 | 2009-11-01T10:18:11 | 2009-11-01T10:18:11 | 37,734,654 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,973 | h | // Geometric Tools, Inc.
// http://www.geometrictools.com
// Copyright (c) 1998-2006. All Rights Reserved
//
// The Wild Magic Version 4 Foundation Library source code is supplied
// under the terms of the license agreement
// http://www.geometrictools.com/License/Wm4FoundationLicense.pdf
// and may not be ... | [
"yf.flagship@e79fdf7c-a9d8-11de-b950-3d5b5f4ea0aa"
] | [
[
[
1,
65
]
]
] |
adcd7794b208544107b691b4222c555eea1f918d | 496843a1f1cfa6de4ba5f776e29fcdd295fbf945 | /FlowDB.cpp | 8d499315ba9f4c295e1c5b0f61c686940c72fa3b | [] | no_license | voov/FlowDB | de4089b8678923a9dc3938d9b0eb0d4ea89a108f | a7e4b1b65412c9b6241067999cb3b225b6b742b1 | refs/heads/master | 2021-01-22T01:28:22.151598 | 2011-04-19T21:13:41 | 2011-04-19T21:13:41 | 1,632,996 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 700 | cpp | // FlowDB.cpp : Defines the entry point for the console application.
//
#include <iostream>
//#include <math.h>
#include "btree.h";
#include "mem.h"
int main(int argc, char* argv[])
{
/*BPTree *bptr = new BPTree();
std::cout << "FlowDB v. 0.0.1" << std::endl;
for(int i=1; i<10; i++) {
bptr->Insert... | [
"dande@Daniel-Feketes-iMac.local",
"daniel.fekete@voov.hu"
] | [
[
[
1,
4
],
[
8,
11
],
[
13,
17
],
[
33,
34
]
],
[
[
5,
7
],
[
12,
12
],
[
18,
32
]
]
] |
d589675cb4c483c40df41be532cd16ebf2055dd9 | 6e4f9952ef7a3a47330a707aa993247afde65597 | /PROJECTS_ROOT/WireKeys/WP_Schedule/WP_Schedule.cpp | e2e1e9de962dc5539b966f3bb7677ad7dde45f52 | [] | no_license | meiercn/wiredplane-wintools | b35422570e2c4b486c3aa6e73200ea7035e9b232 | 134db644e4271079d631776cffcedc51b5456442 | refs/heads/master | 2021-01-19T07:50:42.622687 | 2009-07-07T03:34:11 | 2009-07-07T03:34:11 | 34,017,037 | 2 | 1 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,713 | cpp | // IconsFont.cpp : Defines the initialization routines for the DLL.
//
#include "stdafx.h"
#include <atlbase.h>
#include "WP_Schedule.h"
#include "HookCode.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#ifdef _DEBUG
#define TRACETHREAD TRACE3("\nCheck... | [
"wplabs@3fb49600-69e0-11de-a8c1-9da277d31688"
] | [
[
[
1,
117
]
]
] |
0d16a367c45afe34d9e857eab306916090d30ef4 | 4f913cc1a50e8e649fd40313631a161234e3c59d | /CAuADXDecoder.h | 808b0d9a419754bf100a8b9d90d293238a3d2af0 | [] | no_license | autch/kpiadx.kpi | abb1f084163478796e202196a7411a049a76116c | f482c3871d948e71a3b3839e9066f845ecdb5915 | refs/heads/master | 2021-12-16T01:22:32.824315 | 2010-12-15T06:34:48 | 2010-12-15T06:34:48 | 1,170,398 | 1 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 12,734 | h |
#pragma once
#define ADXK0 0x7298
#define ADXK1 0x3350
#define DEFAULT_MASTER_VOLUME 0x4000
#define BLOCKS_PER_ONCE (1 << 7)
struct SADX3Header
{
DWORD dwOffsetToSigAndData;
BYTE abyReserved[3];
BYTE byChannels;
DWORD dwSamplesPerSec;
DWORD dwSamples;
WORD wReserved;
BYTE byVersio... | [
"autch@f88602a7-bc0e-0410-bfba-c07ee007e53c"
] | [
[
[
1,
385
]
]
] |
1366aa59578eb200a5e75bcbe443f2c8ab88f926 | 59112a8527fc59e65ac099b00fd1977d2393fdd7 | /WaveCreator.h | 67fc41ee7fdb41f842cbea6b68d99c552db00847 | [] | no_license | viniciusjarina/wave_creator | 4aa3714ee5894b2f47ecb36c236d8e57fcfd86a9 | 05002aa81918da90e248992a06557d1d86216e69 | refs/heads/master | 2020-06-03T01:45:10.300399 | 2010-09-05T02:23:33 | 2010-09-05T02:23:33 | 3,187,789 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | h | // WaveCreator.h : main header file for the PROJECT_NAME application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
// CWaveCreatorApp:
// See WaveCreator.cpp for the implementation of this class
//
... | [
"viniciusjarina@gmail.com"
] | [
[
[
1,
31
]
]
] |
a0f69342061380fd87569ab174b44bd81756b537 | 7b4c786d4258ce4421b1e7bcca9011d4eeb50083 | /Learning OpenCV/Chapter 4 - HighGUI/Exercise_4_7.cpp | b2b9332817272cf5722a1f511548554f4e53d843 | [] | no_license | lzq123218/guoyishi-works | dbfa42a3e2d3bd4a984a5681e4335814657551ef | 4e78c8f2e902589c3f06387374024225f52e5a92 | refs/heads/master | 2021-12-04T11:11:32.639076 | 2011-05-30T14:12:43 | 2011-05-30T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,191 | cpp | /////////////////////////////////////////////////////////////////
// Date: 2009-10-18
// Author: Yishi Guo
// Exercise: 4.7
// Page: 108p
// Content: Perspective transform
// Functions: cvmGet, cvmSet, cvWarpPerspective
// Website: http://meiyou.org/
////////////////////////////////////... | [
"baicaibang@70501136-4834-11de-8855-c187e5f49513"
] | [
[
[
1,
134
]
]
] |
f29d9a55f2610daf33948483ef598048faab4418 | a70f708a62feb4d1b6f80d0a471b47ac584ea82b | / arxlss --username quangvinh.ph/VLSS/Ex04Dlg.h | b56a0b0be4f108af5efedc8238879424b885ce6d | [] | no_license | presscad/arxlss | ae8a41acba416d20a1ec2aa4485d142912e6787d | d6d201bfc98b0d442c77b37b10ca5ac7ea5efcbb | refs/heads/master | 2021-04-01T22:38:06.710239 | 2009-11-07T02:47:17 | 2009-11-07T02:47:17 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 563 | h | #pragma once
// CEx04Dlg ダイアログ
class CEx04Dlg : public CAcUiDialog
{
DECLARE_DYNAMIC(CEx04Dlg)
public:
CEx04Dlg(CWnd* pParent = NULL); // 標準コンストラクタ
virtual ~CEx04Dlg();
// ダイアログ データ
enum { IDD = IDD_EX04DLG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
... | [
"quangvinh.ph@29354a60-911c-11de-8f34-01a6ee357387"
] | [
[
[
1,
29
]
]
] |
1b3221611fb20dbdf40427fa4896ac7b6090bc0a | ad33a51b7d45d8bf1aa900022564495bc08e0096 | /DES/DES_GOBSTG/Class/Fontsys.cpp | 917b16dc56f41f0d6fe9b9507d9055708a3b3acd | [] | no_license | CBE7F1F65/e20671a6add96e9aa3551d07edee6bd4 | 31aff43df2571d334672929c88dfd41315a4098a | f33d52bbb59dfb758b24c0651449322ecd1b56b7 | refs/heads/master | 2016-09-11T02:42:42.116248 | 2011-09-26T04:30:32 | 2011-09-26T04:30:32 | 32,192,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,391 | cpp | #include "../header/Fontsys.h"
#include "../header/Main.h"
#include "../header/Scripter.h"
#include "../header/Data.h"
#include "../header/SpriteItemManager.h"
#include "../../../src/hge/HGEExport.h"
list<Fontsys *> Fontsys::fontsys;
HD3DFONT Fontsys::font = NULL;
Fontsys::Fontsys()
{
tar = NULL;
sprit... | [
"CBE7F1F65@b503aa94-de59-8b24-8582-4b2cb17628fa"
] | [
[
[
1,
413
]
]
] |
5593f530d453f5ac63243c7823c6d8790ad68f86 | 9a48be80edc7692df4918c0222a1640545384dbb | /Libraries/Boost1.40/libs/wave/test/testwave/testfiles/t_9_004.cpp | d1b07d49268a5d83bccaec8e0ef853044d4830e0 | [
"BSL-1.0"
] | permissive | fcrick/RepSnapper | 05e4fb1157f634acad575fffa2029f7f655b7940 | a5809843f37b7162f19765e852b968648b33b694 | refs/heads/master | 2021-01-17T21:42:29.537504 | 2010-06-07T05:38:05 | 2010-06-07T05:38:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 936 | cpp | /*=============================================================================
Boost.Wave: A Standard compliant C++ preprocessor library
http://www.boost.org/
Copyright (c) 2001-2009 Hartmut Kaiser. Distributed under the Boost
Software License, Version 1.0. (See accompanying file
LICENSE_1_0... | [
"metrix@Blended.(none)"
] | [
[
[
1,
28
]
]
] |
2ec827ce3d8a0a3b393cc9274fd1f3b6f2ab29b6 | 9eb49222299e0e92722b38959272c0489d20fab7 | /Option.cpp | 5722f47daf67c59bd7d16a2faf78416bc74a1582 | [] | no_license | kerolldev/copypathx | f86a4bc7f89dff294e012a951bcdba0faa52c437 | 8d76ab1704014fe4e800e69da46ca9bb27971270 | refs/heads/master | 2021-01-10T19:58:53.262997 | 2011-10-28T02:35:32 | 2011-10-28T02:35:32 | 2,509,231 | 2 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,323 | cpp | #include "StdAfx.h"
#include "option.h"
///////////////////////////////////////////////////////////////////
//
COption::COption(HMODULE hModule)
{
m_hModule = hModule;
// iniファイルのフルパス名設定
_TCHAR buff[MAX_PATH] = {0};
_TCHAR *pCurrent = NULL;
::ZeroMemory(m_strFile, sizeof(m_strFile));
if(GetModul... | [
"kerolldev@gmail.com"
] | [
[
[
1,
45
]
]
] |
c9c165d5bf05256bdd3a528d6ce838f288f0e6fb | 2dbbca065b62a24f47aeb7ec5cd7a4fd82083dd4 | /OUAN/OUAN/Src/Game/GameObject/GameObjectFog.cpp | 173e538a1e3fccd6728b70403e6e745f1d79efff | [] | no_license | juanjmostazo/once-upon-a-night | 9651dc4dcebef80f0475e2e61865193ad61edaaa | f8d5d3a62952c45093a94c8b073cbb70f8146a53 | refs/heads/master | 2020-05-28T05:45:17.386664 | 2010-10-06T12:49:50 | 2010-10-06T12:49:50 | 38,101,059 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,011 | cpp | #include "OUAN_Precompiled.h"
#include "GameObjectFog.h"
#include "../GameWorldManager.h"
using namespace OUAN;
GameObjectFog::GameObjectFog(const std::string& name)
:GameObject(name,GAME_OBJECT_TYPE_FOG)
{
}
GameObjectFog::~GameObjectFog()
{
}
void GameObjectFog::setRenderComponentEntityDreams... | [
"wyern1@1610d384-d83c-11de-a027-019ae363d039",
"ithiliel@1610d384-d83c-11de-a027-019ae363d039"
] | [
[
[
1,
238
],
[
243,
243
],
[
247,
257
]
],
[
[
239,
242
],
[
244,
246
]
]
] |
a50b364dbabb28d953b50ba64dbef256b6c8967d | 1e5a2230acf1c2edfe8b9d226100438f9374e98a | /src/tabimswitch/InputMethod.cpp | 7f86fcd0d82801c7e7de656b85cc6d256d7fde8e | [] | no_license | lifanxi/tabimswitch | 258860fea291c935d3630abeb61436e20f5dcd09 | f351fc4b04983e59d1ad2b91b85e396e1f4920ed | refs/heads/master | 2020-05-20T10:53:41.990172 | 2008-10-15T11:15:41 | 2008-10-15T11:15:41 | 32,111,854 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,186 | cpp | #pragma warning(disable:4512) // assignment operator could not be generated
#pragma warning(disable:4127) // conditional expression is constant
#include <windows.h>
#include <nsISupports.h>
#include <nsStringApi.h>
#include "InputMethod.h"
#include "NativeCodeLogger.h"
#include "SystemInputMethod.h"
#incl... | [
"ftofficer.zhangc@237747d1-5336-0410-8d3f-2982d197fc3e"
] | [
[
[
1,
244
]
]
] |
234e8e6440d7ed00ff4ebe86c5e36d80b61b33e4 | f9acc77870f5a372ee1955e5ac225399d6f841e7 | /lenguajes de Programacion/Archivos cpp Lenguajes/main.cpp | 6dae7d710afe05343779bfa3a949dea7bdbbd828 | [] | no_license | sergiobuj/campari_royal | 3a713cff0fc86837bda4cd69c59f0d8146ffe0e5 | e653b170e5e3ab52e6148242a883b570f216d664 | refs/heads/master | 2016-09-05T21:32:21.092149 | 2011-10-18T22:09:30 | 2011-10-18T22:09:30 | 976,668 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 507 | cpp | #include <cstdlib>
#include <iostream>
#include <iomanip>
using namespace std;
class Rigo{
int filas;
int columnas;
Rigo(int filas,int columnas){
int matrix[filas][columnas];
}
}
int main()
{
int filas;
int columnas;
cout <<... | [
"sergiobuj+github@gmail.com"
] | [
[
[
1,
32
]
]
] |
a99b6401557d7da3e9c3a486bdda8e305a49759a | 7a310d01d1a4361fd06b40a74a2afc8ddc23b4d3 | /src/IniFile.h | d07ca10117123098e75cf5214f2a96a8a2d92990 | [] | no_license | plus7/DonutG | b6fec6111d25b60f9a9ae5798e0ab21bb2fa28f6 | 2d204c36f366d6162eaf02f4b2e1b8bc7b403f6b | refs/heads/master | 2020-06-01T15:30:31.747022 | 2010-08-21T18:51:01 | 2010-08-21T18:51:01 | 767,753 | 1 | 2 | null | null | null | null | SHIFT_JIS | C++ | false | false | 4,814 | h | /**
* @file IniFile.h
* @brief iniファイルの読み書き.
* @note
* MtlPrivateProfile.h を元に作り変えたモノ
*/
#ifndef INIFILE_H
#define INIFILE_H
#pragma once
#include <windows.h>
#include <atlbase.h>
#include <atlapp.h>
#include <atlmisc.h>
#if _ATL_VER >= 0x700
#include <atlsync.h>
#define INISECTION_USE_MUTE... | [
"ahya365@gmail.com"
] | [
[
[
1,
129
]
]
] |
d799ee9e89eef54e43ae7ddea31e7c24085f526a | 9c62af23e0a1faea5aaa8dd328ba1d82688823a5 | /rl/tags/v0-1/engine/core/src/GameEventManager.cpp | 7b751280abc695e5aa3d95a8988462b77ded6eab | [
"ClArtistic",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-public-domain"
] | permissive | jacmoe/dsa-hl-svn | 55b05b6f28b0b8b216eac7b0f9eedf650d116f85 | 97798e1f54df9d5785fb206c7165cd011c611560 | refs/heads/master | 2021-04-22T12:07:43.389214 | 2009-11-27T22:01:03 | 2009-11-27T22:01:03 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,170 | cpp | /* This source file is part of Rastullahs Lockenpracht.
* Copyright (C) 2003-2005 Team Pantheon. http://www.team-pantheon.de
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the Clarified Artistic License.
*
* This program is distributed in the hope that i... | [
"blakharaz@4c79e8ff-cfd4-0310-af45-a38c79f83013"
] | [
[
[
1,
135
]
]
] |
bb9d3e858669435f17d526efb1f4644f5e1ec319 | 94c1c7459eb5b2826e81ad2750019939f334afc8 | /source/SelectStockHsDetail2.cpp | b35fd03e437c92d8b1a72fbbc17f2240e9dd12cc | [] | no_license | wgwang/yinhustock | 1c57275b4bca093e344a430eeef59386e7439d15 | 382ed2c324a0a657ddef269ebfcd84634bd03c3a | refs/heads/master | 2021-01-15T17:07:15.833611 | 2010-11-27T07:06:40 | 2010-11-27T07:06:40 | 37,531,026 | 1 | 3 | null | null | null | null | GB18030 | C++ | false | false | 12,481 | cpp | // SelectStockHsDetail2.cpp : implementation file
//tel:13366898744
#include "stdafx.h"
#include "CTaiShanApp.h"
#include "SelectStockHsDetail2.h"
#include "CSharesDetailDays.h"
#include "MainFrm.h"
#include "CAlertSystem.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = _... | [
"7171136@qq.com"
] | [
[
[
1,
465
]
]
] |
2948d5d0d5358ecee87067805f69b9dfdf2eabf5 | f55665c5faa3d79d0d6fe91fcfeb8daa5adf84d0 | /Depend/MyGUI/MyGUIEngine/include/MyGUI_WidgetInput.h | 329e1547740fb68244c94fe02344bfbe76179e17 | [] | no_license | lxinhcn/starworld | 79ed06ca49d4064307ae73156574932d6185dbab | 86eb0fb8bd268994454b0cfe6419ffef3fc0fc80 | refs/heads/master | 2021-01-10T07:43:51.858394 | 2010-09-15T02:38:48 | 2010-09-15T02:38:48 | 47,859,019 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,096 | h | /*!
@file
@author Albert Semenov
@date 11/2007
*/
/*
This file is part of MyGUI.
MyGUI 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 opti... | [
"albertclass@a94d7126-06ea-11de-b17c-0f1ef23b492c"
] | [
[
[
1,
337
]
]
] |
4e9b9c66860c6cfd365667faebbd46160d754c9a | 74e7667ad65cbdaa869c6e384fdd8dc7e94aca34 | /MicroFrameworkPK_v4_1/BuildOutput/public/Release/Client/stubs/spot_native_Microsoft_SPOT_ResourceUtility_mshl.cpp | 0a77e3b10f9809fb7b17349271a264c38d1a6f92 | [
"BSD-3-Clause",
"OpenSSL",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | gezidan/NETMF-LPC | 5093ab223eb9d7f42396344ea316cbe50a2f784b | db1880a03108db6c7f611e6de6dbc45ce9b9adce | refs/heads/master | 2021-01-18T10:59:42.467549 | 2011-06-28T08:11:24 | 2011-06-28T08:11:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,597 | cpp | //-----------------------------------------------------------------------------
//
// ** DO NOT EDIT THIS FILE! **
// This file was generated by a tool
// re-running the tool will overwrite this file.
//
//-----------------------------------------------------------------------------
#include "spot_n... | [
"psampaio.isel@gmail.com"
] | [
[
[
1,
45
]
]
] |
fd71a96f839690eca5e053a67178e7257475a23c | 942b88e59417352fbbb1a37d266fdb3f0f839d27 | /src/filefinder.hxx | b24b2115efb826604515e21bbfbf23fbd8a90abc | [
"BSD-2-Clause"
] | permissive | take-cheeze/ARGSS... | 2c1595d924c24730cc714d017edb375cfdbae9ef | 2f2830e8cc7e9c4a5f21f7649287cb6a4924573f | refs/heads/master | 2016-09-05T15:27:26.319404 | 2010-12-13T09:07:24 | 2010-12-13T09:07:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,054 | hxx | //////////////////////////////////////////////////////////////////////////////////
/// ARGSS - Copyright (c) 2009 - 2010, Alejandro Marzini (vgvgf)
/// All rights reserved.
///
/// Redistribution and use in source and binary forms, with or without
/// modification, are permitted provided that the following... | [
"takeshi@takeshi-laptop.(none)",
"takechi101010@gmail.com"
] | [
[
[
1,
24
],
[
27,
27
],
[
41,
41
]
],
[
[
25,
26
],
[
28,
40
],
[
42,
42
]
]
] |
715d230933da348e478515aed5bed12e3428d7d5 | 07e88c109af86db6aa3194cbb71c41d449f1a805 | /Code/m3alpsshapinglightt0/joint.cpp | 7eabe5b1204126144023dc7871df1f772859c707 | [] | no_license | jbongard/ISCS | 2a7fe528140aa24631022807c5af34d7442a122d | a7f7196a2a729564bd033abc13cdf4acb172edfb | refs/heads/master | 2016-09-05T08:44:10.630025 | 2011-08-17T15:31:58 | 2011-08-17T15:31:58 | 2,222,304 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,270 | cpp | #include "stdio.h"
#include "iostream"
#include "fstream"
using namespace std;
#ifndef _JOINT_CPP
#define _JOINT_CPP
#include "joint.h"
#include "robot.h"
extern double ROBOT_STARFISH_JOINT_RANGE;
extern double ROBOT_STARFISH_MOTOR_SPEED;
extern double ROBOT_STARFISH_MOTOR_STRENGTH;
JOINT::JOINT(void) {
... | [
"josh.bongard@uvm.edu"
] | [
[
[
1,
320
]
]
] |
51f4847085ccd5746405393293fade72213a5c75 | c3531ade6396e9ea9c7c9a85f7da538149df2d09 | /Param/src/Numerical/solver.cpp | 6fb35bc4c08236b8b84ef5ff77f71d2b003fac17 | [] | no_license | feengg/MultiChart-Parameterization | ddbd680f3e1c2100e04c042f8f842256f82c5088 | 764824b7ebab9a3a5e8fa67e767785d2aec6ad0a | refs/heads/master | 2020-03-28T16:43:51.242114 | 2011-04-19T17:18:44 | 2011-04-19T17:18:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 386 | cpp | #include "solver.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Solver::Solver(int nb_variables) {
nb_variables_ = nb_variables ;
variable_ = new SolverVariable[nb_variables] ;
}
... | [
"weihongyu1987@gmail.com"
] | [
[
[
1,
16
]
]
] |
daf59dea3a18d5da7c42a5984bb3f73a742b15fa | a352572bc22d863f72020118d8f5b94c69521f3f | /pa2/src/JointTree.cpp | a949fb5b60054b47de9a75733ac83d421f2e7e7c | [] | no_license | mjs513/cs4620-1 | 63345a9a7774279d8d6ab63b1af64d65b14b0ae3 | 419da5df73c5a9c34387b3cd2f7f3c542e0a3c3e | refs/heads/master | 2021-01-10T06:45:47.809907 | 2010-12-10T20:59:46 | 2010-12-10T20:59:46 | 46,994,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 597 | cpp | /*
* JointTree.cpp
*
* Created on: Oct 22, 2010
* Author: Roberto
*/
#include "JointTree.h"
#include <algorithm>
JointTree::JointTree(Joint *root)
: _root(root)
{
_iterate(_root);
}
Joint* JointTree::root() const
{
return _root;
}
const std::vector<Joint*>& JointTree::joints()... | [
"robertorfischer@ebbd4279-5267-bd07-7df5-4dafc36418f6"
] | [
[
[
1,
38
]
]
] |
34329ce957bd50c9ceb57d753333f791fae7926f | 216398e30aca5f7874edfb8b72a13f95c22fbb5a | /Healthcare/Client/Test/Network.cpp | d959f84ae4c9ac0ec09f3e0989fd7cdb49b454eb | [] | no_license | markisme/healthcare | 791813ac6ac811870f3f28d1d31c3d5a07fb2fa2 | 7ab5a959deba02e7637da02a3f3c681548871520 | refs/heads/master | 2021-01-10T07:18:42.195610 | 2009-09-09T13:00:10 | 2009-09-09T13:00:10 | 35,987,767 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 6,111 | cpp | #include "stdafx.h"
#include "Network.h"
#include "CommonType.h"
Network Network::_instance;
Network::Network() :
_isSuccessAuth( FALSE ),
_isHost( FALSE )
{
}
Network::~Network()
{
}
void Network::Init( int clientPort, std::string ip, int serverPort )
{
//
RakNetStatistics *rss;
_client=Rak... | [
"naidzzang@cc586c1e-b153-0410-8069-cfc9d6f95ec9"
] | [
[
[
1,
276
]
]
] |
24e15168f70fbc85e1c89a0b5fc3013bc9adf3a5 | 5860c104a52cff6d0cc6ce7597cf0e34bfe3cf98 | /plugin/idaswig.cpp | a8e997efcd0bdda749b49378f351686827308c25 | [] | no_license | spoonm/idarub | 7a712e8274176df5481721a99dfaddefa0f6dd2e | 89c9863a18d8705a85c958518296d129427b09b3 | refs/heads/master | 2021-01-22T18:23:07.313066 | 2011-12-05T12:16:50 | 2011-12-05T12:16:50 | 2,686,803 | 13 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 68 | cpp | // ghettoness
#include "idaswig.h"
#include "idaswig_wrap.cpp"
| [
"spoonm@gmail.com"
] | [
[
[
1,
4
]
]
] |
faeab51294efebcaca64f63484eb5bb634ce0e70 | bf278d024957a59c6f1efb36aa8b76069eff22a5 | /dlglog.cpp | df79d5a48defc368dc1b147e01b2bbd8efcf0ce6 | [
"BSD-3-Clause",
"BSL-1.0"
] | permissive | byplayer/yamy | b84741fe738f5abac33edb934951ea91454fb4ca | 031e57e81caeb881a0a219e2a11429795a59d845 | refs/heads/master | 2020-05-22T12:46:55.516053 | 2010-05-19T15:57:38 | 2010-05-19T15:57:38 | 3,842,546 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,860 | cpp | //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// dlglog.cpp
#include "misc.h"
#include "mayu.h"
#include "mayurc.h"
#include "registry.h"
#include "windowstool.h"
#include "msgstream.h"
#include "layoutmanager.h"
#include "dlglog.h"
#include <windowsx.h>
///
class D... | [
"gimy@users.sourceforge.jp"
] | [
[
[
1,
184
]
]
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.