blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
cafde7ffe1ac6a6510fbe7edb04d7436980a4b58
04b021cb3fd6274a80ed322775fd4bc14cf161ea
/datastructures/Dynamic Programming/edit distance/main.cpp
027191886e7e69d5eb0a819647ea12b9f6758087
[]
no_license
ashishcas/programs
f402c82fdac1aefca2db123db2391c441acf333d
fbfd90fa06b36346033b63e33619af34b9e9caf1
refs/heads/master
2020-03-17T13:53:40.676577
2019-08-20T15:54:04
2019-08-20T15:54:04
133,649,020
0
0
null
null
null
null
UTF-8
C++
false
false
805
cpp
#include <bits/stdc++.h> using namespace std; int mini(int a,int b,int c) { return min(min(a,b),c); } int edit(string s,string t) { int m = s.length(); int n = t.length(); int dp[m+1][n+1]; for(int i =0;i<=m;i++) { for(int j=0;j<=n;j++) { if(i == 0) ...
[ "chilukaashish@gmail.com" ]
chilukaashish@gmail.com
a66b00cee1a07d0db53791255a2c1590ebcb3a01
f20dc74769927484eab9f84bc152c92ea7ce0766
/src/Main.cpp
2928eb9577990c84ed12644bc11f8f34f3d0abb4
[]
no_license
AndreiRafael/HyperFire3000
db67b4c76851767e2508346a21952f7a9ce5f482
3f49c01002929ad464d698ef7eb7bd009a4a2a01
refs/heads/master
2020-08-06T03:29:04.413720
2019-11-27T16:27:34
2019-11-27T16:27:34
212,817,149
0
0
null
null
null
null
UTF-8
C++
false
false
681
cpp
#include <iostream> #include <string> #include <time.h> #include "core/GameManager.h" #include "core/InputManager.h" #include "core/AudioManager.h" #include <ExampleScene.h> int main(int argc, char* argv[]) { srand(time(NULL)); SDL_Init(SDL_INIT_EVERYTHING); auto manager = hf::GameManager::get_instance(); aut...
[ "abrongel@gmail.com" ]
abrongel@gmail.com
577da0f627632aa20995b67900c8178a613263fc
9109cbb93e6a2981199425c809f09ba8e9d774d2
/topcoder/some-easy-problem/srm475.cpp
e011fd5a2cb45a4f1cc85106cff5dcd865f2e40f
[]
no_license
chffy/ACM-ICPC
e8ea50337931d997685c0fac1f0b424f33ab4e37
59f071b014634e923338571aaa2272c490a8a0ae
refs/heads/master
2020-05-30T05:00:10.775875
2016-03-28T14:37:08
2016-03-28T14:37:08
23,791,162
5
0
null
null
null
null
UTF-8
C++
false
false
2,269
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <vector> #include <queue> #include <map> #include <algorithm> using namespace std; int num[20], cnt[20]; int sum[20], pre[20], prd[20]; class RabbitStepping { public: double getExpected(string field, int r) { int n = field.size(); i...
[ "jinjsy@163.com" ]
jinjsy@163.com
c456473a096653e9ed73a8ce359a95f2bc65e761
3e1ac5a6f5473c93fb9d4174ced2e721a7c1ff4c
/build/iOS/Preview/include/Fuse.IActualPlacement.h
2cab6093bba0cdeb198a5ba66ccc4b7fb3ca350f
[]
no_license
dream-plus/DreamPlus_popup
49d42d313e9cf1c9bd5ffa01a42d4b7c2cf0c929
76bb86b1f2e36a513effbc4bc055efae78331746
refs/heads/master
2020-04-28T20:47:24.361319
2019-05-13T12:04:14
2019-05-13T12:04:14
175,556,703
0
1
null
null
null
null
UTF-8
C++
false
false
1,552
h
// This file was generated based on /usr/local/share/uno/Packages/Fuse.Nodes/1.9.0/Translation.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Uno{struct Float3;}} namespace g{ namespace Fuse{ // public abstract interface IActualPlacem...
[ "cowodbs156@gmail.com" ]
cowodbs156@gmail.com
16bb523502f6c0e0acc84de717fb1b66e8c8b32f
b26a8e14cfaa1bc2e8086b99ad03ddd686ace72d
/1216 跳马问题.cpp
78eb23bf7ff572928fc05ea372f7afec67aa2281
[]
no_license
makixi/codevs
ed2013ed5a9699c3db14f8b4ad62222b139083d0
cf5893d57ea1bf19ef9e552b9091fc052e8ba214
refs/heads/master
2021-04-06T20:51:46.667991
2018-04-12T14:39:50
2018-04-12T14:39:50
125,339,266
0
0
null
null
null
null
UTF-8
C++
false
false
342
cpp
#include <cstdio> int f[301][301],n,m,sx,sy,tx,ty; int dfs(int x,int y) { if(x<1||y<1||x>n||y>m)return 0; if(f[x][y])return f[x][y]; return f[x][y]=(dfs(x-2,y-1)+dfs(x-1,y+2)+ dfs(x-1,y-2)+dfs(x-2,y+1))%123456; } int main(){ scanf("%d%d%d%d%d%d",&n,&m,&sx,&sy,&tx,&ty),f[sx][sy]=1; printf("%d\n",dfs(t...
[ "lynseychen97@gmail.com" ]
lynseychen97@gmail.com
3e9e283b586c3e91c8c7895f801ffe725dfe2840
7d19bd1b18359573bd2d5e39a730738df821a4d1
/libs/concurrency/include_compatibility/hpx/util/spinlock.hpp
0023efd5cd8ba57f071e814532e092701703f973
[ "BSL-1.0", "LicenseRef-scancode-free-unknown" ]
permissive
sarthakag/hpx
4f45d3b8e2fc88d7d2f0bf0abb7d231cd18360e6
a895dda5272634c5a8c9e35a45405699075a119e
refs/heads/master
2022-04-11T23:38:21.432194
2020-03-25T19:11:37
2020-03-25T19:11:37
250,194,241
1
0
BSL-1.0
2020-03-26T07:52:49
2020-03-26T07:52:48
null
UTF-8
C++
false
false
686
hpp
// Copyright (c) 2019 Mikael Simberg // // SPDX-License-Identifier: BSL-1.0 // 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) #include <hpx/config.hpp> #include <hpx/concurrency/config/defines.hpp> #include <hpx/...
[ "aurianer@cscs.ch" ]
aurianer@cscs.ch
c2039040fc1d3db9801abb3b8fa2bc12e93dc30f
4023789d76ee33d3bc4cce94553d94aac79c8dfb
/src/channel.cpp
4682b5e3ac8b9b97f8998d865e4e57153113c703
[]
no_license
mwidya/Mutation
d80f5d700c259495c40aa5f04a03f32e4c713101
3949412d139f6f743beb3462a1777b1a27f6e944
refs/heads/master
2021-01-20T06:22:51.922215
2014-08-27T20:53:05
2014-08-27T20:53:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
738
cpp
// // channel.cpp // Mutation // // Created by Martin Widyanata on 01.08.14. // // #include "channel.h" channel::channel(int width, int height, int glFormat, string syphonServerName){ mWidth = width; mHeight = height; mGlFormat = glFormat; mSyphonServerName = syphonServerName; // TODO...
[ "mwidya@gmail.com" ]
mwidya@gmail.com
d37a6d284a436a28b74d3535e26ca49c9866e003
9cca17134874c14f3d6924a9d1831ed21ba9de1b
/Pendulum.hpp
fbd5a206643226142f79f3daa5085adc1a02d750
[ "MIT" ]
permissive
clockworkengineer/Pendulum
0cb1c04012c1a0500b48e2da441239695bd361ba
2f54102012b664b299c36a46917e030a536be7ea
refs/heads/master
2021-01-19T19:12:16.950946
2020-08-15T16:42:33
2020-08-15T16:42:33
88,406,099
1
0
null
null
null
null
UTF-8
C++
false
false
373
hpp
#ifndef PENDULUM_HPP #define PENDULUM_HPP // ========= // NAMESPACE // ========= namespace Pendulum { // // .eml file extention // constexpr char const *kEMLFileExt{".eml"}; // // Main processing functionality (archive e-mail). // void archiveEmail(int ar...
[ "robert_tizzard@hotmail.com" ]
robert_tizzard@hotmail.com
e8f6eb51060fc776fdf38eb26babfe7e0fb5c63d
762f52d0e4b51509187e91e90b67b22b9a3fd1b4
/21. Dynamic Programming/19_elephantInMazeMinCost.cpp
10dc9fbbd6f134a8f8f7e2065ff3183833c85895
[]
no_license
apoorvKautilya21/Data-Structures-And-Algorithm-in-C-
f77319e5d56897586f89c377a53f5369a588f85d
c90a8953fc21f0d7a67cb28ec53a8ccf0157c58f
refs/heads/main
2023-03-03T14:20:37.141531
2021-02-06T05:08:54
2021-02-06T05:08:54
336,460,031
0
0
null
null
null
null
UTF-8
C++
false
false
592
cpp
#include<iostream> using namespace std; #define R 4 #define C 4 int countPaths() { int dp[100][100] = {0}; dp[0][0] = 1; for(int i = 0; i < R; i++) { for(int j = 0; j < i; j++) { dp[i][0] += dp[j][0]; } } for(int i = 0; i < C; i++) { for(int j = 0; j < i; j++) { dp[0][i] += dp[0][i]; } } for(i...
[ "apoorvkautilya@gmail.com" ]
apoorvkautilya@gmail.com
adef425781dc018852870710b54633f604b326fd
8a31c32e471630c2a490aa2a90f3a317fdbb37ba
/SymbolTable/hashtable.h
9d36894215708817392174f7f8e6b681bf80e0a9
[]
no_license
irstavr/wizAlgorithms
8c2fa13b3c53067d6c74ab5ae039460f9474806b
06e00a4dfbeda013ba8421dd20695c23ab9e0e1b
refs/heads/master
2021-01-10T10:21:26.928253
2015-10-28T19:44:30
2015-10-28T19:44:30
45,123,937
0
0
null
null
null
null
UTF-8
C++
false
false
5,685
h
/* File: hashtable.h * ----------------- * This is a simple table for storing values associated with a string * key, supporting simple operations for enter and lookup. * * keys: strings * values: any type */ #ifndef _H_hashtable #define _H_hashtable #include <map> #include <cstdlib> #include <cstring> #include <iostre...
[ "irstavr@gmail.com" ]
irstavr@gmail.com
7152c48ecb2d41dba203b6bad803803d57c7731e
28a13ff79c03db639545ff914b0109d971651de8
/Framework/Externals/slang/source/slang/compiler.cpp
81f107bd80dc4cb503876d330a8392d47c4ea50c
[ "MIT" ]
permissive
tangent-vector-personal/Falcor
828882a4180393f6fb5f76f7059d80b691df56ef
04571cfa4f39c27f8931dd6b2d929f995f20bc83
refs/heads/master
2022-02-14T02:50:07.983450
2017-07-24T03:50:46
2017-07-24T03:50:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,318
cpp
// Compiler.cpp : Defines the entry point for the console application. // #include "../core/basic.h" #include "../core/slang-io.h" #include "compiler.h" #include "lexer.h" #include "parameter-binding.h" #include "parser.h" #include "preprocessor.h" #include "syntax-visitors.h" #include "slang-stdlib.h" #include "refle...
[ "tfoley@nvidia.com" ]
tfoley@nvidia.com
b36b02820cee28976577749c012fb6367f65762d
1cfd0b154f05498c3bae47247e77acb598fb8cfb
/Misc/SubarraySumsII.cpp
9a4910f29df3dfc36cb4897e2a8ddf2af14e95dc
[ "MIT" ]
permissive
0xWOLAND/CompetitiveProgramming
291e9e628788a0e14fd6638f6010e589b670d136
6dd47e56693e4fb0600a30a16453978fd52d584e
refs/heads/main
2023-08-21T23:51:29.758793
2021-10-13T04:06:43
2021-10-13T04:06:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
484
cpp
#include <bits/stdc++.h> using namespace std; int main(int argc, char const *argv[]) { int n, x; cin >> n >> x; std::map<int, int> map; map[0] = 1; int u; int sum = 0, ans = 0; for(int i = 0; i < n; i++) { cin >> u; sum += u; ...
[ "bhargav.annem@gmail.com" ]
bhargav.annem@gmail.com
136f02afb1925e38390ed7d069daef83b410d950
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/com/ole32/stg/h/dfdeb.hxx
d624896fdbd21378bd83340f4aed62962e7a8179
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
1,955
hxx
//+-------------------------------------------------------------- // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1992 - 1992. // // File: dfdeb.hxx // // Contents: Docfile debug header // // Functions: DfDebug // DfSetResLimit // DfGetResLimit // DfPrintAllocs // ...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
d0511db5d3937d4bc6c3c2118c379b44b6dba01b
e018d8a71360d3a05cba3742b0f21ada405de898
/Client/DebugKit.cpp
eef4d56f1c0dba02e779eb7adabc742a4a77aebf
[]
no_license
opendarkeden/client
33f2c7e74628a793087a08307e50161ade6f4a51
321b680fad81d52baf65ea7eb3beeb91176c15f4
refs/heads/master
2022-11-28T08:41:15.782324
2022-11-26T13:21:22
2022-11-26T13:21:22
42,562,963
24
18
null
2022-11-26T13:21:23
2015-09-16T03:43:01
C++
UTF-8
C++
false
false
4,019
cpp
// DebugKit.cpp: implementation of the CDebugKit class. // ////////////////////////////////////////////////////////////////////// #include "Client_PCH.h" #include "stdafx.h" #include "DebugKit.h" #include <wtypes.h> #include "fstream" extern BOOL g_bMsgOutPutFlag; extern BOOL g_bMsgDetailFlag; extern BO...
[ "tiancaiamao@gmail.com" ]
tiancaiamao@gmail.com
c6775e133f63b5f4de6e69a1d2a70acc440b80b4
165961905f419dbf7844ce25a4f125993252cf2f
/SoftLoader/04.code/SoftLoader/ANCToolPlugin/Config.cpp
049a15a40a23f12b5cfe17e71f7436871e5732f5
[]
no_license
Tairycy/Local_git_resp
caf67aa6a5b0807b23dfb9e2c80fbe7ed3247bab
44b8cbd319327b37a2a5c2dae5b6c8fab8250549
refs/heads/master
2023-07-16T03:13:40.200394
2021-09-03T08:45:10
2021-09-03T08:45:10
null
0
0
null
null
null
null
GB18030
C++
false
false
12,016
cpp
#include "Config.h" #include <QFile> #include <QApplication> #include <QJsonDocument> #include <QJsonArray> #include <QJsonObject> #include <QDebug> #include <QMessageBox> #include "../common/customplot/Utility.h" Config* Config::m_pIns = nullptr; Config::Config() : m_wave_format_modified_flag(false) , m_wave_fil...
[ "727631254@qq.com" ]
727631254@qq.com
33b2b1211c66058002fa36240675fb1142204aa2
ce05aaa05dad66310e159245b2ce4baa9f6ac25b
/viewtestdlg.cpp
cafb8450d601c9ce4334d8f07c75faa70f281473
[]
no_license
acraig5075/kbutwa-utils
617c25e6b10e17834e053283f0abbc430343a67f
3515dc1f069653dd81e3734123b53512418b87fa
refs/heads/master
2021-10-20T12:38:28.921982
2021-10-13T18:47:41
2021-10-13T18:47:41
47,452,185
0
0
null
null
null
null
UTF-8
C++
false
false
1,253
cpp
#include "viewtestdlg.h" #include "ui_viewtestdlg.h" ViewTestDlg::ViewTestDlg(QWidget *parent, const QString &number, const QString &vault, const QVector<QPair<QString, QString>> &labels, const QString &procedure) : QDialog(parent), ui(new Ui::ViewTestDlg) { ui->setupUi(this); ui->numberEdit->setReadOnly(true); ...
[ "ac@acraig.za.net" ]
ac@acraig.za.net
52869f18a3b327d8c6bcccdb6ec7cd504292e500
315450354c6ddeda9269ffa4c96750783963d629
/CMSSW_7_0_4/tmp/slc6_amd64_gcc481/src/TotemDQMLite/GUI/src/TotemDQMLiteGUI/moc/QRootCanvas_h_moc.cc
6e2f2b72aaaf3458a6afd9ec9024851263d95872
[]
no_license
elizamelo/CMSTOTEMSim
e5928d49edb32cbfeae0aedfcf7bd3131211627e
b415e0ff0dad101be5e5de1def59c5894d7ca3e8
refs/heads/master
2021-05-01T01:31:38.139992
2017-09-12T17:07:12
2017-09-12T17:07:12
76,041,270
0
2
null
null
null
null
UTF-8
C++
false
false
2,420
cc
/**************************************************************************** ** Meta object code from reading C++ file 'QRootCanvas.h' ** ** Created: Mon Jul 11 23:33:08 2016 ** by: The Qt Meta Object Compiler version 63 (Qt 4.8.1) ** ** WARNING! All changes made in this file will be lost! ***********************...
[ "eliza@cern.ch" ]
eliza@cern.ch
1ddfe897fd42581c9e61b8b286865de1689aec84
019873f0c364b45d560d0008f9719d6ec62bf23d
/help.cpp
1feaf1d4da06853894ecd1fd2409552d4980e8b2
[]
no_license
asdredmitry/JordThreads
d31809db0afa735b4e04be96db0806ac2f8bc631
5f0b84180815572303dc68d08f1b2cbd57206149
refs/heads/master
2021-07-24T14:22:40.693565
2017-11-06T23:49:41
2017-11-06T23:49:41
108,880,389
0
0
null
null
null
null
UTF-8
C++
false
false
1,531
cpp
#include <sys/resource.h> #include <sys/time.h> #include <stdio.h> #include <math.h> #include "help.h" #define MAX_OUTPUT_SIZE 10 double f(int i, int j) { return fabs(i - j); } void readMatrix(int n, double *a, double *b, int mode, FILE *input) { int i, j; double tmp; if (mode == 1) { for (i = 0; i < n; i+...
[ "michalych2014@yandex.ru" ]
michalych2014@yandex.ru
97a153e98d58cdffcae462d48f626d813c25c1db
3562757dd437244240ba9eada1a8e3d65e701fc3
/IterativePostorder.cpp
5c114ede2026332da0771fbe204ca6676edca1e3
[]
no_license
Upasana-12/Trees
ccfa93c3e78b1aab3dafe0a3439374348a7db012
eef493812d231eb7bd3cbbf0ba95b29d598a7603
refs/heads/master
2020-08-07T11:30:35.940599
2019-10-07T16:47:33
2019-10-07T16:47:33
213,432,569
0
0
null
null
null
null
UTF-8
C++
false
false
612
cpp
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ vector<int> Solution::postorderTraversal(TreeNode* A) { vector<int> v; stack<TreeNode*> s1,s2; while(!s1.empty()) {...
[ "upasana12000@gmail.com" ]
upasana12000@gmail.com
b8e51524ca4872944d2d317871c3788574c59f5c
7bb34b9837b6304ceac6ab45ce482b570526ed3c
/external/webkit/Tools/MiniBrowser/qt/BrowserView.cpp
7d6426eb8621e63613aba2131e1cd78708f25232
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.0-or-later", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.1-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
ghsecuritylab/android_platform_sony_nicki
7533bca5c13d32a8d2a42696344cc10249bd2fd8
526381be7808e5202d7865aa10303cb5d249388a
refs/heads/master
2021-02-28T20:27:31.390188
2013-10-15T07:57:51
2013-10-15T07:57:51
245,730,217
0
0
Apache-2.0
2020-03-08T00:59:27
2020-03-08T00:59:26
null
UTF-8
C++
false
false
2,308
cpp
/* * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) * Copyright (C) 2010 University of Szeged * * 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...
[ "gahlotpercy@gmail.com" ]
gahlotpercy@gmail.com
0bac0aa362a380d6a5de79b79a3b51417496434d
1d3e07aa050fd2fd0c8cc0a9a83b74b28826c8a8
/lib/src/simple_geometry.cpp
6543ef3fa10be65f1eba69f658a44a64a4b6aac7
[]
no_license
climoge/moteur_physique
bdc066b4058c2e816841246d44a6d48cb52e5b7d
5d52d3250c1142bc2c432ad6e6c1763f58425d6b
refs/heads/master
2020-05-26T01:01:43.064415
2017-03-15T22:46:55
2017-03-15T22:46:55
84,959,128
0
0
null
null
null
null
UTF-8
C++
false
false
8,401
cpp
#include <glmlv/simple_geometry.hpp> #include <glm/gtc/constants.hpp> #include <iostream> namespace glmlv { SimpleGeometry makeTriangle() { std::vector<Vertex3f3f2f> vertexBuffer = { { glm::vec3(-0.5, -0.5, 0), glm::vec3(0, 0, 1), glm::vec2(0, 0) }, { glm::vec3(0.5, -0.5, 0), glm::vec3(0, 0, 1...
[ "corentin.limoge@gmail.com" ]
corentin.limoge@gmail.com
d426f57c064d12613d890eb0e1cd7e1578d1b838
32644d7e482ad227a51757ff0d07dd9cc5e1897e
/old/src_old/pig.h
5969e0f14e9625c9f1917fefdb1fefc32dbd6ef5
[]
no_license
pigApp/pig
521b2f06f3020362d5e7ad3283faabc207f41f06
2593b7ca0203644a074d15b038ba4b5b2d421b7d
refs/heads/master
2016-09-06T06:51:13.186777
2016-01-31T15:47:59
2016-01-31T15:47:59
20,078,750
0
0
null
null
null
null
UTF-8
C++
false
false
1,530
h
#ifndef PIG_H #define PIG_H #include "update.h" #include "tcpSocket.h" #include "torrent.h" #include <QObject> #include <QtSql> class PIG : public QObject { Q_OBJECT public: PIG(QObject *parent = 0); ~PIG(); public slots: void quit(); void set_root_object(QObject *root); void password_hand...
[ "pig@mail.com" ]
pig@mail.com
357b7568ee72669f4c0e4cebedbbaf495f73dbb0
0310c7b65492405afea20c57a7787fb1854289ad
/PictureCreater/PictureCreater/BMPPic.h
bce702e753312c7c092094af09ab868151065acb
[]
no_license
nie11kun/c-plus-plus-test
d1f099a98d497b54049f436e092e9ac461df6d49
a6056de82dea0274b0f82731fb1f403dea6c3dd4
refs/heads/master
2021-06-17T22:08:28.368538
2021-01-06T03:20:45
2021-01-06T03:20:45
132,863,604
0
0
null
null
null
null
UTF-8
C++
false
false
258
h
#pragma once #include<stdio.h> class BMPPic { public: BMPPic(); ~BMPPic(); bool generateBmp(char* pData, int width, int height, char * filename); void readBmp(FILE* filename); void bmpWidthHeight(FILE* fpbmp, int &width, int &height); };
[ "me@niekun.net" ]
me@niekun.net
7daf032ba044b0c4c2a53237a4a7f15f5ee4d6e4
7419c3edc2d0f8ecc82be918f1321d985b781a39
/sources/mesh_layout.hpp
07c65398fe6210c8858a80779adb779dd45d04eb
[]
no_license
Nojan/particle
07b1685f127610b35d222aa305a9114577e6a855
d3e700a114479c69dfcced52f828c1b253d4fde7
refs/heads/master
2021-07-30T00:03:37.947192
2018-09-16T15:27:45
2018-09-16T15:33:35
21,325,548
1
1
null
2021-07-28T09:49:41
2014-06-29T15:03:19
C++
UTF-8
C++
false
false
1,740
hpp
#pragma once #include "types.hpp" #include <array> namespace VertexSemantic { enum value { Position, Normal, TexCoord0, Color0, Weigth, Index, Count, }; static const char* str[] = { "Position", "Normal", "TexCoord0", ...
[ "mathias.labeyrie@gmail.com" ]
mathias.labeyrie@gmail.com
e2595fe39afb3384e2b67a8d31166cb1664b387e
ee41758c348e4e2e7eb45983ca7c647fdcbe754d
/ProiectSDA/src/util/vector.h
687386fa3aba4f0018db9b8ec316a3da97a5379a
[]
no_license
mariusadam/dictionary-mvc-cpp
9a180ca1dbed4871f634531ddd422325f3e2ee7d
e4bd6f73fa8a9c91a6c11999e7073c0548c6fbb6
refs/heads/master
2021-01-19T03:48:44.782482
2016-06-03T02:24:41
2016-06-03T02:24:41
60,148,579
0
0
null
null
null
null
UTF-8
C++
false
false
6,197
h
#ifndef VECTOR_H #define VECTOR_H #include <exception> #include <cmath> class VectorException : public std::exception { public: VectorException() : std::exception() {} VectorException(const char* msg) : std::exception{ msg } {} }; template<typename Type> class IteratorVector; /* Vector declaration */ template<typ...
[ "adamhoreamarius@gmail.com" ]
adamhoreamarius@gmail.com
61e2569dd94656d13a293b1a1ce8e6af692bb3b7
0dd4731848ce00ece780adaaccf3a6083afeca79
/music_player_core/albummodel.h
5fb51b4b93a98cfb7638fa07ffb04e31c57eb3b3
[]
no_license
merq312/qt_music_player
1894944d98418d69e9ba70c63f5c1f44508f1898
191f3504366a9d2dca9ad5cca129f54cabc24454
refs/heads/master
2023-08-24T19:34:26.296373
2021-10-04T04:47:41
2021-10-04T04:47:41
413,277,261
0
0
null
null
null
null
UTF-8
C++
false
false
886
h
#ifndef ALBUMMODEL_H #define ALBUMMODEL_H #include "music_player_core_global.h" #include <QAbstractListModel> #include <QPair> #include <QString> #include "databasemanager.h" class QPixmap; class MUSIC_PLAYER_CORE_EXPORT AlbumModel : public QAbstractListModel { Q_OBJECT public: enum Roles { ...
[ "merc312@gmail.com" ]
merc312@gmail.com
9537ac8fe5fdc71c829f639a11083a69464a9b24
06bfbd7d0336a0e054bed3787363a702baa423ac
/Library/Network/BitTorrent/DHT/NodeId.cpp
e6e93a5a20335147274baef01f9d08aa3a4846e6
[]
no_license
Y2JB/Bittorrent
50a07ee3b851684e892bf2999ba9ff381625f759
825d0282ad3da577953b908fd8e13d063bb20389
refs/heads/master
2023-01-14T14:32:15.957897
2020-11-27T10:35:19
2020-11-27T10:35:19
240,065,485
0
0
null
null
null
null
UTF-8
C++
false
false
2,077
cpp
// Jon Bellamy 18/11/2009 #include "NodeId.h" #include <assert.h> #include <memory.h> #include "General/Rand.h" cDhtNodeId::cDhtNodeId() { Randomize(); }// END cDhtNodeId cDhtNodeId::cDhtNodeId(const std::string& data) { assert(data.size() == NODE_ID_SIZE); if(data.size() == NODE_ID_SIZE)...
[ "jon_bellamy_uk@yahoo.co.uk" ]
jon_bellamy_uk@yahoo.co.uk
78558a9f8f78fb026df91819083b2fb53ac7519b
b2b9e4d616a6d1909f845e15b6eaa878faa9605a
/Genemardon/20150920北京网络赛/1007.cpp
2d864c52d403ca98595e8d058d3ee548783e3cca
[]
no_license
JinbaoWeb/ACM
db2a852816d2f4e395086b2b7f2fdebbb4b56837
021b0c8d9c96c1bc6e10374ea98d0706d7b509e1
refs/heads/master
2021-01-18T22:32:50.894840
2016-06-14T07:07:51
2016-06-14T07:07:51
55,882,694
0
0
null
null
null
null
UTF-8
C++
false
false
4,850
cpp
#include <stdio.h> #include <string.h> #include <algorithm> #include <stack> #include <queue> #include <map> using namespace std; struct node { stack<int>box[8]; int qid; long long nid; node () {} node (int qid, long long nid) : qid(qid), nid(nid) {} }; int ans[8][2000000]; long long base[100]; voi...
[ "jinbaosite@yeah.net" ]
jinbaosite@yeah.net
431456dcf94122ccec10eec65c3b9a5d2e3647e7
f1a2325795dcd90f940e45a3535ac3a0cb765616
/development/TL1Services/TL1Core/TL1_DaDomain.h
afa5af47727d9207d5056febbc08de6aa33948ba
[]
no_license
MoonStart/Frame
45c15d1e6febd7eb390b74b891bc5c40646db5de
e3a3574e5c243d9282778382509858514585ae03
refs/heads/master
2021-01-01T19:09:58.670794
2015-12-02T07:52:55
2015-12-02T07:52:55
31,520,344
0
0
null
null
null
null
UTF-8
C++
false
false
2,117
h
#ifndef __TL1_DADOMAIN_H__ #define __TL1_DADOMAIN_H__ /*----------------------------------------------------------------------------- Copyright(c) Tellabs Transport Group Inc. All rights reserved. SUBSYSTEM: Software Services TARGET: AUTHOR: Keith Halsall - August 7, 2012 DESCRIPTION: Hea...
[ "lijin303x@163.com" ]
lijin303x@163.com
b2ba43b4608d26d188f0be138de8d2b0a587a0b3
c81561d479c823a61be71c62f3c20ea166811b88
/solution/Priprema3_dodatak/Zabava.h
8c8b044e820b210ed8066a103e6c45aaa5b6d102
[]
no_license
Metlina/oop
f864d89bb18d041358842f6f6977393b94f2d755
a2dd1714876871e62fe2241e0b68b3de6e26906d
refs/heads/master
2021-01-19T04:52:25.901947
2015-01-30T23:21:50
2015-01-30T23:21:50
30,095,027
3
0
null
null
null
null
UTF-8
C++
false
false
418
h
#include <vector> #include <string> #include "Prijatelj.h" using namespace std; class Zabava { private: vector<Prijatelj*> uzvanici; vector<Pice*> popisPica; double budzet; public: Zabava(double budzet); ~Zabava(void); void dodajPrijatelja(Prijatelj* prijatelj); void dodajPice(Pice* pice); double getBudzet()...
[ "tinopetrina@live.com" ]
tinopetrina@live.com
0d5b02ccc8d0cfc4f663ce0e7998da18e2fe71d2
78b28019e10962bb62a09fa1305264bbc9a113e3
/common/geometry/kdtree/info/update_node_to_root.h
6eb1b7b02f555717a5dd6f21e9ad81e3761369e2
[ "MIT" ]
permissive
Loks-/competitions
49d253c398bc926bfecc78f7d468410702f984a0
26a1b15f30bb664a308edc4868dfd315eeca0e0b
refs/heads/master
2023-06-08T06:26:36.756563
2023-05-31T03:16:41
2023-05-31T03:16:41
135,969,969
5
2
null
null
null
null
UTF-8
C++
false
false
311
h
#pragma once #include "common/binary_search_tree/info/update_node_to_root.h" namespace geometry { namespace kdtree { namespace info { template <class TNode> inline void UpdateNodeToRoot(TNode* node) { bst::info::UpdateNodeToRoot(node); } } // namespace info } // namespace kdtree } // namespace geometry
[ "alexeypoyarkov@gmail.com" ]
alexeypoyarkov@gmail.com
dcf92a2fad301bfaece8d5276c1dd7d3515af95c
0aea33bf1e2768895bf37a3048008489e8f7aa27
/export/windows/cpp/obj/include/flixel/FlxG.h
840f934b54c70c53c7f0a5fe2592903fc62a7c4e
[]
no_license
ninjamuffin99/ProjectMountain
5f96e3713fe77ee97e081dfd2f46bba32e526cb7
63f41b0345b789b1bd2bf05cb904e66ff9d35631
refs/heads/master
2021-01-01T16:22:44.354766
2017-07-25T21:06:40
2017-07-25T21:06:40
97,814,887
0
0
null
null
null
null
UTF-8
C++
false
true
8,295
h
// Generated by Haxe 3.4.0 #ifndef INCLUDED_flixel_FlxG #define INCLUDED_flixel_FlxG #ifndef HXCPP_H #include <hxcpp.h> #endif HX_DECLARE_CLASS1(flixel,FlxBasic) HX_DECLARE_CLASS1(flixel,FlxCamera) HX_DECLARE_CLASS1(flixel,FlxG) HX_DECLARE_CLASS1(flixel,FlxGame) HX_DECLARE_CLASS1(flixel,FlxObject) HX_DECLARE_CLASS1(f...
[ "cameron.taylor.ninja@gmail.com" ]
cameron.taylor.ninja@gmail.com
2c38f8a315020e5f8efe4ff1815ab52e4c783912
ed6cc29968179d13bb30c73dbf2be2fb6469d495
/P86/BASE/Pizza.h
3a7f7f6eb7cdde3c6f6823617ac1a075b73ea2bc
[]
no_license
sindri69/pizza420
e0880eea7eb0dbdeabae3dc675dba732a1778d90
a0f78b59b5830ff67e9b5456a6e6d229869628f5
refs/heads/master
2021-08-28T14:59:32.423484
2017-12-12T14:19:05
2017-12-12T14:19:05
112,332,570
0
0
null
null
null
null
UTF-8
C++
false
false
679
h
#ifndef PIZZA_H #define PIZZA_H #include <string> #include <iostream> using namespace std; class Pizza { public: Pizza(string psize, string ptype, string ptopping, double pprice, bool ppayedfor, int pstatus); string get_psize() const; string get_ptype() const; string get_ptopping(...
[ "pllsteinar@gmail.com" ]
pllsteinar@gmail.com
28e143bbb70b47096a6827d25f27b95d48ad2d8a
9f9dce45e477007505617aa428945e35e8db4e6e
/modules/task_1/novozhilova_e_labeling/main.cpp
abb839c11a23963560784d0e46cc73d4695ec7a4
[ "BSD-3-Clause" ]
permissive
Sergey01923/pp_2021_spring_informatics
bbce7351e391463868e8cb5bc848d6d2d46fbd47
1499ac172be6b57ba9fde633873360b51a54644f
refs/heads/master
2023-05-11T10:02:26.907924
2021-06-04T10:54:25
2021-06-04T10:54:25
352,624,861
0
0
BSD-3-Clause
2021-04-18T19:17:46
2021-03-29T11:51:20
null
UTF-8
C++
false
false
6,708
cpp
// Copyright 2021 Novozhilova Ekaterina #include <gtest/gtest.h> #include "./labeling.h" TEST(Sequential, Test_10x10) { std::vector<std::vector<int>> arr = {{1, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {1, 0, 1, 1, 0, 0, 0, 0, 1, 0}, {1, 0, 0, 1, 0...
[ "eks-pliz@ya.ru" ]
eks-pliz@ya.ru
9688c31303ddfba6c187db6d3fb72ea775e29468
285c86812338bc61a0bdbe0f470981ac6c26a317
/SEASON_1/K번째 수(백준)/JY_K번째 수.cpp
f37f47f620062e91d5568d30881c631a4789121a
[]
no_license
Dinoryong/algo-dinner
7d296c84423586d25f5aecbf840139e397d8fb2d
ed49b0ef896e9d21d9e5893ba0d93555626cbaeb
refs/heads/main
2023-06-24T14:18:12.495121
2021-07-20T14:08:49
2021-07-20T14:08:49
350,269,755
5
4
null
2021-07-01T14:19:28
2021-03-22T08:46:40
Swift
UTF-8
C++
false
false
488
cpp
#include <iostream> #include <string> #include <cstring> #include <algorithm> using namespace std; long long N, K; long long answer = 0; int main() { cin >> N >> K; long long left = 1, right = K; while (left <= right) { long long mid = (left + right) >> 1; long long cnt = 0; for (int i = 1; i <= N; i++) { ...
[ "biiregrey2@gmail.com" ]
biiregrey2@gmail.com
d55a68d0d296fdddb0c0906a7040e63bd0098c4e
96efae6f60910a17deb08346b33903c0b1fe2403
/MFC Windows应用程序设计(第3版)/31273MFC Windows应用程序设计(第3版)/教材例题代码/04章例题代码/MyPrj/MyPrj.h
d0aa640a576f913836b1f970910f210acfaf43c9
[]
no_license
truehaolix/DissectingMFC_SourceCode
bfa38219cc342eed4ddb8e34e1c4ee23bc4d4098
c9ea97c50af7c2535b04eabf0fc6ec1a46591316
refs/heads/master
2021-12-14T21:34:11.132192
2017-06-03T05:43:50
2017-06-03T05:43:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,345
h
// MyPrj.h : main header file for the MYPRJ application // #if !defined(AFX_MYPRJ_H__AD7D6524_5958_11D8_B98F_0000E8D3C09B__INCLUDED_) #define AFX_MYPRJ_H__AD7D6524_5958_11D8_B98F_0000E8D3C09B__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #ifndef __AFXWIN_H__ #error include 'stdafx...
[ "shulin_liu@foxmail.com" ]
shulin_liu@foxmail.com
d60217c5b8e78d19c106974afc509f5cec2fcf29
2e1f21a5e1280158b46116f9156dac5ee091b290
/queue/queue.cpp
72d4fee18832036e11135670cf3caf05d6f3ba9c
[]
no_license
shenhangke/DataStructAndOS
55b3dea1e5e07fb494fd5c9b9ef17a94ed3d95bb
cc62e9ad8e9e3330b92cc9d8022c5eb3ae8ecc7d
refs/heads/master
2020-07-10T10:20:16.631121
2019-09-30T04:44:54
2019-09-30T04:44:54
204,239,923
0
0
null
null
null
null
UTF-8
C++
false
false
3,461
cpp
// // Created by 沈航可 on 2019-08-23. // /* * 队列满的条件是 * (rear+1)%queueSize==?front * 计算队列长度的公式: * (rear-front+queueSize)%queueSize * */ /* * 栈的结构,是只能在线性表的一头进行插入和删除操作 * 相对应的操作就是pop,和push * * * 队列的本质,也是线性表,我们对这个表进行操作的时候,只能在这个表的一头进行插入操作,另外一头,进行删除操作 * 0 1 2 3 4 * ------------------------ * 1 | 2| 3| 4...
[ "475162739@qq.com" ]
475162739@qq.com
650480ff89f17f80793ca5e9479566a2fa7dd7e5
12210a918a469378443453efbd4e3d9b9801babb
/cpp_basic_examples/hello_area_description/src/main/jni/hello_area_description/mini_timer.h
b58e34ee71cbb6774a1a3713d485a81e17c472e5
[ "LicenseRef-scancode-generic-cla", "LicenseRef-scancode-google-cla", "LicenseRef-scancode-warranty-disclaimer", "Libpng", "MIT", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
JzHuai0108/tango-examples-c
4f0f04e23a0cd5a4686a04c9382b111aeffcfab0
51113f2d88d61749ea396b3f5a4bebbf7912327b
refs/heads/master
2021-07-01T22:32:28.297409
2020-08-11T14:19:22
2020-08-11T14:19:22
123,386,592
4
0
null
2018-03-01T05:28:21
2018-03-01T05:28:21
null
UTF-8
C++
false
false
399
h
// // Created by jhuai on 19-8-11. // #ifndef CPP_BASIC_EXAMPLES_MINITIMER_H #define CPP_BASIC_EXAMPLES_MINITIMER_H #include <sys/time.h> namespace timing { class Timer { struct timeval start_, end_; public: // start timer Timer(); // reset timer. void tic(); // stop timer // return elapsed time d...
[ "huai.3@osu.edu" ]
huai.3@osu.edu
c8340a4c8282dc29de3560a359bb5a0d16aac555
f6439b5ed1614fd8db05fa963b47765eae225eb5
/chrome/browser/content_settings/content_settings_utils.h
97ee89a1617524d5a58f6f45a6aeb2063bd6c5db
[ "BSD-3-Clause" ]
permissive
aranajhonny/chromium
b8a3c975211e1ea2f15b83647b4d8eb45252f1be
caf5bcb822f79b8997720e589334266551a50a13
refs/heads/master
2021-05-11T00:20:34.020261
2018-01-21T03:31:45
2018-01-21T03:31:45
118,301,142
2
0
null
null
null
null
UTF-8
C++
false
false
3,027
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_UTILS_H_ #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_UTILS_H_ #include <string>...
[ "jhonnyjosearana@gmail.com" ]
jhonnyjosearana@gmail.com
31197b839eaa9e1e45222dc71259fc793ca049a0
3cea356ef76eb8ff75e65afa4bd6368b7c94b064
/Projects/VideoGameProject/Obstacle.h
ab6f654b806ae18db9a0868ab3d025a893331759
[]
no_license
Jacophobia/OpenGL
e6961be528d9191c2d43b6ec449e221d408ad601
26b906115d2e918b07001f8fd9cb9f3d326fd2c1
refs/heads/main
2023-08-28T22:29:50.591405
2021-11-02T05:18:57
2021-11-02T05:18:57
423,021,347
0
0
null
null
null
null
UTF-8
C++
false
false
141
h
#ifndef OBSTACLE_H #define OBSTACLE_H #include "CollidableDynamicObject.h" class Obstacle : public CollidableDynamicObject { }; #endif
[ "jacophilia@gmail.com" ]
jacophilia@gmail.com
53d43b9b91b24ebc48fe66734569602998501f04
d8460da4691cf71f1121565bf6a4bc8cde1bf411
/ZEngine-Core/Scripting/Script.cpp
f5386f2dc18ac3ef85a298738d9f988151105221
[]
no_license
blizmax/zengine
99cae2e35ed5c999cf903e6baa11ecbff1273844
907e5029831b0b2c79bea148de971523c1045015
refs/heads/master
2022-01-05T05:35:53.380759
2019-01-03T01:50:46
2019-01-03T01:50:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,610
cpp
#include "Script.h" #include "ScriptSystem.h" #include <iostream> #include <fstream> Script::Script(std::string name) : ZObject(name, ObjectType::SCRIPT) { } bool Script::CompileFromFile(std::string path) { std::ifstream in(path, std::ios::in); if (in.is_open()) { std::string code((std::istreambuf_iterator<char>...
[ "101668878@student.swin.edu.au" ]
101668878@student.swin.edu.au
00ed78ec3e9a90601449ccfc56a5a7e8069a366d
3fa1397b95e38fb04dac5e009d70c292deff09a9
/BaiTap_KTLT_0081_48/BaiTap_KTLT_0081_48.h
cf885e43e2b5eb0a25df8f396fb24b30bd08c38b
[]
no_license
nguyennhattruong96/BiboTraining_BaiTap_KTLT_Thay_NTTMKhang
61b396de5dc88cdad0021036c7db332eec26b5f3
1cac487672de9d3c881a8afdc410434a5042c128
refs/heads/master
2021-01-16T18:47:05.754323
2017-10-13T11:15:01
2017-10-13T11:15:01
100,113,344
0
0
null
null
null
null
UTF-8
C++
false
false
230
h
#ifndef __BaiTap_KTLT_0081_48_H__ #define __BaiTap_KTLT_0081_48_H__ #include <iostream> #include <string> using namespace std; #pragma once int Input(string sMessage); void Tich(int n); #endif // !__BaiTap_KTLT_0081_48_H__
[ "nguyennhattruong96@outlook.com.vn" ]
nguyennhattruong96@outlook.com.vn
3a199cb6e15715514f287c454528b91f2a207e50
e2ab2b9def0176a9092c2aeb9c916164cf2e4445
/AI.cpp
8b8e89f797fb457cfc8b9f088eb1bda8620e7561
[]
no_license
Elthron/Perudo
75829cfd2247f1fd0afcfe2138814d1ccd4fcbe9
1cf96a2f353b318fc188956dcb829a1672430b93
refs/heads/master
2020-09-16T12:41:16.982823
2016-10-14T19:44:04
2016-10-14T19:44:04
66,290,233
0
0
null
2016-09-02T18:05:04
2016-08-22T16:42:58
C++
UTF-8
C++
false
false
632
cpp
#include "AI.h" AI::AI(unsigned int die_size, std::string _name): Player(die_size, name) {} void AI:notify(Message& message) { //call the appropriate function corresponding to the message id switch(message.id) { case 1: recievePlayerList(message.players_vec); break; case 2: recieveNewB...
[ "benjamin.stks@gmail.com" ]
benjamin.stks@gmail.com
259fc0019e45f0ffca6627bc7503950ba6e6f866
eb2ff965bb3a2deec83a99d28a79bfd68e57f072
/mainwidget.h
20a3c0fd959bcc34fa76907df79a3432ef75d246
[]
no_license
hermixy/PM-Qt
c2f31c9ad90c5005dcb8740b2c576a1f22f45f77
e98c6f35057c854b2e703f67feefe12ebc700d72
refs/heads/master
2021-01-15T11:02:56.841382
2014-11-27T22:32:23
2014-11-27T22:32:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,009
h
// Author: Dmitry Kukovinets (d1021976@gmail.com) #ifndef MAINWIDGET_H #define MAINWIDGET_H #include <QtWidgets> #include "passwordlistwidget.h" #include "passwordcontentwidget.h" #include "settingssaver.h" class MainWidget: public QSplitter { Q_OBJECT // Properties Q_PROPERTY(PasswordListWidget *passwordListW...
[ "d1021976@yandex.ru" ]
d1021976@yandex.ru
842024825ac8044e6b813f934b81c43a8a5891d2
40c884145f53abed8e845766a2ad1e2e232c2e4c
/ExRootAnalysis/tmp/modules/ModulesDict.cc
9bd295c924fd9b92efd8a56a1648f1b1a12ae045
[]
no_license
BradSchoenrock/MadGraph
ac3b0f461cbbb8ae41bb276fe4edb713a7ad2ab4
59b40c977dbab60ec7d21ef42d28955434d808a9
refs/heads/master
2020-03-23T11:42:34.982767
2018-07-19T04:29:27
2018-07-19T04:29:27
141,517,331
0
0
null
null
null
null
UTF-8
C++
false
false
103,651
cc
#define private public #define protected public #include "modules/MadGraphClassFilter.h" #include "modules/MadGraphAnalysis.h" #include "modules/MadGraphKtJetFinder.h" #include "modules/MadGraphConeJetFinder.h" #ifdef __CINT__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions;...
[ "schoenr1@alpheus.aglt2.org" ]
schoenr1@alpheus.aglt2.org
26bc53606bba0d00b874807edbfa27bfb091dc43
995f187dc18e6848bf37900a1904bc3479bf8055
/ConsoleApplication27/ConsoleApplication27.cpp
f13e54cacbae498f2a49b578549852336903a779
[]
no_license
gordushha/ConsoleApplication27
d6514dc39206e8a6f2f5b5ae4cdf87c6ca189710
db5740cbfc11a8a560452529ae36704305ca926e
refs/heads/master
2022-07-17T02:36:53.035215
2020-05-13T16:30:01
2020-05-13T16:30:01
263,681,279
0
0
null
null
null
null
UTF-8
C++
false
false
4,025
cpp
#include <iostream> #pragma warning(disable:4996) size_t my_strlen(const char* str) { size_t size = 0; while (*str != '\0') { ++str; ++size; } return size; } class TString { public: TString():m_data (0) , m_size(0){} TString(const char* str) { m_size = my_strlen(str); m_data = new c...
[ "gordey.mary17@gmail.com" ]
gordey.mary17@gmail.com
34384a730e41f86283f53b9785247f9d585c04ab
d65c5cfaee4abf3a8403fe338d0338e068b24885
/Source/ParicialICC/MainPlayer.h
c28eb26000afd192d8e6c93906c7db63fa38f699
[]
no_license
LordWake/Unreal-2017-FPS_First_Game
7be471bbb904d267d21b289273ce70ed9509f0c4
da58dcdbc221f06b26de2da2aaee97283d360dc2
refs/heads/main
2023-05-17T14:24:45.665172
2020-12-28T02:36:01
2020-12-28T02:36:01
302,237,697
0
1
null
null
null
null
UTF-8
C++
false
false
3,299
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "Engine.h" #include "Engine/World.h" #include "Runtime/Engine/Classes/Kismet/KismetMathLibrary.h" #include "PlayerBullet.h" #include "MyUI.h" #include "GameFramework/Character.h" #include "MainPlayer.generated.h" UCL...
[ "44070054+LordWake@users.noreply.github.com" ]
44070054+LordWake@users.noreply.github.com
ee9e7f30a7ff01ad2c4150a2d50ffe44865f4f5e
91b19ebb15c3f07785929b7f7a4972ca8f89c847
/Classes/Jack.cpp
dc3265eea93b68a404ff3e00f17485c21d6a14a0
[]
no_license
droidsde/DrawGirlsDiary
85519ac806bca033c09d8b60fd36624f14d93c2e
738e3cee24698937c8b21bd85517c9e10989141e
refs/heads/master
2020-04-08T18:55:14.160915
2015-01-07T05:33:16
2015-01-07T05:33:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
103,675
cpp
// // Jack.cpp // DrawingJack // // Created by 사원3 on 12. 11. 29.. // // #include "Jack.h" #include "ASPopupView.h" #include "StarGoldData.h" #include "CCMenuLambda.h" #include "MaingameScene.h" #include "TutorialFlowStep.h" #include "MyLocalization.h" #include "AchieveNoti.h" #include "CommonAnimation.h" void Jack...
[ "seo88youngho@gmail.com" ]
seo88youngho@gmail.com
dbc3942fc147d0547396a0b97cda05956468aead
5a8bf8d140fa5aa3acc6a8e335f4f2f0974931fc
/uva/543 - Goldbach's Conjecture.cpp
e75d5ea0e24cc52cbc5ee8cf2acd56ee278e24a3
[ "MIT" ]
permissive
taufique71/sports-programming
72dbec005f790d8f6b55d1fb030cc3d50ffe7df2
c29a92b5e5424c7de6f94e302fc6783561de9b3d
refs/heads/master
2020-03-25T04:43:54.418420
2019-10-10T19:51:40
2019-10-10T19:51:40
134,890,558
0
0
null
null
null
null
UTF-8
C++
false
false
677
cpp
#include <iostream> #define MAX 1000000 using namespace std; int prime[MAX+10]={1}; void seive() { long int i,j; for(i=0;i<=MAX;i++) prime[i]=1; prime[0]=0; prime[1]=0; for(i=2;i<=MAX;) { if((i*i)>MAX) break; for(j=i+i;j<=MAX;j=j+i) prime[j]=0; for (...
[ "taufique71@gmail.com" ]
taufique71@gmail.com
5f1769a8775251f1993c0fcc09995d0ca5247406
a80db26373b943e5adf764453a534925592b613d
/src/remote_control_server/main.cc
2a50056743eeacb144da331cf07397f3e99392dc
[]
no_license
20496e76696e6369626c65/qt_simple_teamviewer
34b3c808f3730adc83d48efa7521742ccdb217c8
ac21c87aa7920e8408b333bb6792cdd2de5bd4ed
refs/heads/master
2020-04-30T18:21:06.496477
2019-03-21T19:02:24
2019-03-21T19:02:24
177,007,149
2
1
null
null
null
null
UTF-8
C++
false
false
333
cc
#include <QApplication> #include "../include/remote_control_server.h" int main( int argc, char* argv[] ) { QApplication a( argc, argv ); RemoteControlServer server; if( !server.Start() ) { qDebug() << "Server failed to start"; return 1; } qDebug() << "Server started"; return...
[ "sergey_teplov@bk.ru" ]
sergey_teplov@bk.ru
4114658b23abae253e5886e56121ecbe5493bf55
69ab565e491c73d55aaaa55b5d802dbbb04e8e3d
/QRD/src/QRD/DBObjects/Record.cpp
edb0ef4525a31722b9997d6c5cc6cbde6fa32360
[]
no_license
CAt0mIcS/DatabaseManagementSystem
8cfa82f0f1af77a10f6a3cc9d05549d036c7ac4b
f7dfc950b0ecc914099fac5a4b787fab37ee9a41
refs/heads/master
2022-12-25T07:38:10.594944
2020-10-09T13:40:54
2020-10-09T13:40:54
281,762,655
0
0
null
null
null
null
UTF-8
C++
false
false
835
cpp
#include <sstream> #include "Record.h" namespace QRD { bool Record::operator==(const Record& other) const { return m_RecordData == other.GetRecordData() && m_RecordId == other.GetRecordId(); } void Record::DeleteData(unsigned short fieldId) { m_RecordData.erase(m_RecordData.begin(...
[ "simon_geier@web.de" ]
simon_geier@web.de
d580940c7056640554342e4afdbe83d597f64844
5deaaee37871d0268328f889a74ffe4cee5c6170
/ArrayOfStructure.cpp
2b3c82d9ef53910d7a223cd272f4e3c96fbe20bc
[]
no_license
harshitbansal373/c-plus-plus
096fe8cf2069fb5c3fa2b7ccf1732a5edcede00e
43c2b851e748142d5a18498d743d746a7ed63a61
refs/heads/master
2023-01-05T14:31:42.397967
2020-10-28T11:12:51
2020-10-28T11:12:51
158,512,426
5
32
null
2020-12-09T06:00:48
2018-11-21T08:05:06
C++
UTF-8
C++
false
false
430
cpp
//array of structure #include<conio.h> #include<iostream> using namespace std; struct record{ char name[100]; int roll_no; char branch[10]; }; int main(){ int i; struct record r[5]; cout<<"enter the name, roll no. and branch"; for(i=0;i<5;i++){ cin>>r[i].name>>r[i].roll_no>>r[i].branch; } cout<<"details o...
[ "harshitbansal373@gmail.com" ]
harshitbansal373@gmail.com
cb500b328d62ec582adca0a694e582a83b3c0459
e372d895d7a55b9031403ce04822ae1c36ab055f
/d05/ex02/Bureaucrat.hpp
25b4cc79a0fdfd191c2cae2584abf1f9b4006480
[]
no_license
maryna-kryshchuk/CPP-Piscine
9b74766a5aa31dbf0ff7026a86b5bdb9a9e9f09f
1bd945498f5d7ec2809b43ee77eea520ede4cee6
refs/heads/master
2021-09-17T14:00:19.635452
2018-07-02T11:31:03
2018-07-02T11:31:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,055
hpp
// ************************************************************************** // // // // ::: :::::::: // // Bureaucrat.hpp :+: :+: :+...
[ "avolgin@e1r3p8.unit.ua" ]
avolgin@e1r3p8.unit.ua
0b2e8029550d11608e1afc71fde7ab3582883768
ad822f849322c5dcad78d609f28259031a96c98e
/SDK/OrganicPOI_Radiated_Crust_functions.cpp
167d17f63c8f7839f0b738eee37ac8ebe18ac382
[]
no_license
zH4x-SDK/zAstroneer-SDK
1cdc9c51b60be619202c0258a0dd66bf96898ac4
35047f506eaef251a161792fcd2ddd24fe446050
refs/heads/main
2023-07-24T08:20:55.346698
2021-08-27T13:33:33
2021-08-27T13:33:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
861
cpp
#include "../SDK.h" // Name: Astroneer-SDK, Version: 1.0.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Functions //--------------------------------------------------------------------------- // Function OrganicPOI_...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
a9b40f884b0523d8615290e1c0b8616a5a203c3e
fe7466fdc3f8251aa049268638e9b81d59161fe5
/Linux C++/Parameter_BinningHV2/Grab_BinningHV2.cpp
cce14c6c8efda7b2fbcdb2e031b41bdbf3ddb7ac
[]
no_license
Setsu00/SentechSDK_FunctionSample
a4eb5664caf6a66813cf6e8e92d435cb800d1bad
75fc81af00f0c6a400a25449fa5a351895676302
refs/heads/master
2023-03-11T08:40:14.215138
2023-02-02T03:06:03
2023-02-02T03:06:03
187,120,246
7
0
null
null
null
null
UTF-8
C++
false
false
3,530
cpp
/* BinningHV2: Set Camera Binning Horizontal / Binning Vertical to 2 */ #define ENABLED_ST_GUI #include <StApi_TL.h> #ifdef ENABLED_ST_GUI #include <StApi_GUI.h> #include <iomanip> //std::setprecision #endif using namespace StApi; using namespace std; const uint64_t nCountOfImagesToGrab = 100; int main(int /* arg...
[ "peiper.hsueh@gmail.com" ]
peiper.hsueh@gmail.com
35d8b8d365c7ef0228ac37710372faefba8707ad
04e5b6df2ee3bcfb7005d8ec91aab8e380333ac4
/clang_codecompletion/llvm/Object/IRObjectFile.h
db47960237a0159a43c47afe60bf941a6ae72bbd
[ "MIT" ]
permissive
ColdGrub1384/Pyto
64e2a593957fd640907f0e4698d430ea7754a73e
7557485a733dd7e17ba0366b92794931bdb39975
refs/heads/main
2023-08-01T03:48:35.694832
2022-07-20T14:38:45
2022-07-20T14:38:45
148,944,721
884
157
MIT
2023-02-26T21:34:04
2018-09-15T22:29:07
C
UTF-8
C++
false
false
2,915
h
//===- IRObjectFile.h - LLVM IR object file implementation ------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
[ "emma@labbe.me" ]
emma@labbe.me
ae2df820f517b94260ebc071ea1b804c463a3d03
dee038fd8d612fb25333286e5cbaa7ed4da5bc61
/src/util/mm_io/readGraph.tcc
3056ed86b7b7876913a224118b73a0a6edb7940c
[ "MIT" ]
permissive
IronySuzumiya/G-Sim
9506ea5780848e4331ecf4075788059a6b89a54a
b6bf4d22da0b0fde190490a2cbb600b21a4ee395
refs/heads/master
2022-12-16T18:37:29.132826
2019-11-04T04:30:01
2019-11-04T04:30:01
292,493,679
0
0
MIT
2020-09-03T07:06:57
2020-09-03T07:06:56
null
UTF-8
C++
false
false
10,736
tcc
#include <cstdio> #include <cstdlib> #include <cassert> #include <iostream> #include <fstream> #include <string> #include <unistd.h> #include <map> #include <set> #include <filesystem> extern "C" { #include "mm_io.h" } template<class v_t> void Utility::readGraph<v_t>::allocateGraph() { // Initialize node pointers ...
[ "atsmith3@illinois.edu" ]
atsmith3@illinois.edu
1ccecc19ba0ee47d600671ebfdf0fd493d6d268e
ec3ef9226427cdb361b8dd98a4d3b39fea6653d6
/src/qt/bitcoinamountfield.cpp
866b364e714ee3936d380a77ab50c2b876b7cbee
[ "MIT" ]
permissive
investhubcoin/Invest-Hub-Coin
96e4fe9f839d107c5f4f990932c965abce419f38
7845dd9798302ca2631a723cb8434c0a71c03de7
refs/heads/master
2020-05-29T21:41:29.128492
2019-05-30T09:50:48
2019-05-30T09:50:48
187,916,304
0
0
null
null
null
null
UTF-8
C++
false
false
8,182
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "bitcoinamountfield.h" #include "bitcoinunits.h" #include "guiconstants.h" #include "qvaluecombobox.h" #include <QA...
[ "50889648+investhubcoin@users.noreply.github.com" ]
50889648+investhubcoin@users.noreply.github.com
6cff4452ac19bae4813bc72b8d585a7c49543f3e
d4881694449a8c8c7925bdc5c45ed9909d36edba
/Project1/Project1/brizaaaa.cpp
5f3bd47444a791d3957e9326d505abde64cfe89d
[]
no_license
Silentbroo/Projects.quiz
46d7b17b7c576425ba05b4c2ab6e4a99a96c265a
d66532f05f5faa3c7d16cb4c6875d344cf9eb27d
refs/heads/master
2021-01-18T13:12:56.060225
2017-05-19T14:45:29
2017-05-19T14:45:29
80,738,757
0
1
null
null
null
null
UTF-8
C++
false
false
2,762
cpp
#include <stdio.h> #include <allegro5/allegro.h> #include <cmath> const float FPS = 100; const int SCREEN_W = 640; const int SCREEN_H = 480; //change this number to change the size of the "marker tip" that draws the shape! const int BOUNCER_SIZE = 15; int main(int argc, char **argv) { ALLEGRO_DISPLAY *display = NUL...
[ "Game110AM@605-110-STU21" ]
Game110AM@605-110-STU21
0b704fc268fb225fdb3ac9e1eeff19c20a8662ba
a0e65f99c7928552d16b46966046ea63f48810b3
/hw3/tool/print_mat.cpp
f7fc4c5df7a0fed6685c970e48142350ffaee379
[]
no_license
SuXY-O-O/ParallerComputing
72758f293ce30f77db72ad9f5425a3a480e8eb7d
b2f44aed3162cd400c6f09c1278e3bd567ba3b73
refs/heads/master
2023-05-09T05:43:15.145529
2021-06-06T07:29:30
2021-06-06T07:29:30
374,295,507
0
0
null
null
null
null
UTF-8
C++
false
false
1,335
cpp
// print.cxx // print the double precision matrix from the input file #include <stdio.h> #include <stdlib.h> #include <sys/stat.h> int main(int argc, char **argv) { FILE *fh; if (argc < 2) { printf("Invalid arguments!\n"); printf("Run the program as ./print filename\n"); exit(-1);...
[ "18373187@buaa.edu.cn" ]
18373187@buaa.edu.cn
8c82ed972acc620b86f663b9b5003a476934b108
4145500714b175cd40f6ecbd215635b5b859241f
/engine/XEffeEngine/XControl/XControlBasic.cpp
7f979612b64f0c9e03760bf6fb3753c605240779
[]
no_license
QiangJi/XEffect2D
3fbb1e5f1a3a7c94f9d1ab3abb57943fa9da7b62
bf7224542d8bb48de19b15a0b06a094bc78bd9f5
refs/heads/master
2020-12-13T12:52:53.945387
2014-04-22T08:45:37
2014-04-22T08:45:37
null
0
0
null
null
null
null
GB18030
C++
false
false
1,380
cpp
//++++++++++++++++++++++++++++++++ //Author: 贾胜华(JiaShengHua) //Version: 1.0.0 //Date: See the header file. //-------------------------------- #include "XControlBasic.h" _XControlBasic::_XControlBasic() :m_mouseRect(0.0f,0.0f,1.0f,1.0f) //控件的鼠标响应范围 ,m_size(1.0f,1.0f) //控件的大小 ,m_position(0.0f,0.0f) //控件的位置 ,m_color(...
[ "jsh@sonovo.cn" ]
jsh@sonovo.cn
fbf4bbf24ade965c8beb34736487f85201390ff0
97903b44eef6a0b080d0b4169a1c3487e75569b5
/src/engine/src/vertex.cpp
6ed103abaf992fa884c1bed0212ec67638636920
[]
no_license
1whatleytay/ivory
74dd5aa791b225d0b03c03b67e0c262410f4e66a
2bc153fa9dc56c4a135170b21551de8993215de1
refs/heads/master
2023-05-10T03:20:38.748844
2021-05-29T03:04:54
2021-05-29T03:11:02
347,225,561
0
0
null
null
null
null
UTF-8
C++
false
false
760
cpp
#include <engine/vertex.h> Vec2::Vec2(float x, float y) : x(x), y(y) { } std::array<uint8_t, 4> Color::data() const { return { static_cast<uint8_t>(red * 255.0f), static_cast<uint8_t>(green * 255.0f), static_cast<uint8_t>(blue * 255.0f), 255 }; } Color::Color(uint32_t color) {...
[ "32211852+1whatleytay@users.noreply.github.com" ]
32211852+1whatleytay@users.noreply.github.com
368d2ad75a8c3796852c1e978c948d023ada570a
68e794d0ef476f13c77b2ad912c08f9a2bf4205e
/tests/tests/cookie_encoding.cpp
10d5b64704600032edb3634c188399b45fdd7c89
[]
no_license
omerhorev/cryptopals
8fbd829eacd038b6fe0f2c4e2fff63df4d274c02
3ab6ec686d8f2f319f7a0e3b7014a9156742e8ca
refs/heads/master
2020-06-19T11:23:13.414944
2019-12-28T12:20:13
2019-12-28T12:20:13
196,691,133
2
0
null
2019-11-17T10:16:21
2019-07-13T07:16:33
C++
UTF-8
C++
false
false
1,181
cpp
// // Created by omerh on 24/08/2019. // #include <gtest/gtest.h> #include "utils/cookie_encoding.h" struct example_object { int foo; char baz[4]; float zap; }; namespace utils { template<> class cookie_encoder<example_object> : internal::encode_cookie_base { public: std::string e...
[ "omer.hv@gmail.com" ]
omer.hv@gmail.com
51869a48fa230d08a6bd090d693775dbb1ce8ce3
8d83c56718f0845423ec1eff847df9f590b0a116
/Mods/CrysisWarsMod/Code/GameCVars.cpp
e5436fed335cf2de3607110314fa91097a6e66a5
[]
no_license
CyberSys/Crysis-Wars-Source-Code
534e7936a9856b529fce327ae4d2388828066498
9cfe9fa887f6583b72f3bf1dc3c5609077e44fc6
refs/heads/master
2021-09-02T12:54:05.307572
2018-01-02T20:29:59
2018-01-02T20:29:59
null
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
89,769
cpp
/************************************************************************* Crytek Source File. Copyright (C), Crytek Studios, 2001-2004. ------------------------------------------------------------------------- $Id$ $DateTime$ ------------------------------------------------------------------------- Hist...
[ "mr.a.c.stopher@googlemail.com" ]
mr.a.c.stopher@googlemail.com
6050614394a1b89f884e9e36a25c9ea21c1ea2e0
9895bc169c7585e6fd6888916096f90c16135a5a
/Rainbow Pinball/ModuleRender.cpp
46bd670d41d8ad448a8a6fbbed161f8d922f8d86
[ "MIT" ]
permissive
RustikTie/Pinball
60d3821d9c99e1d54109acef453013dc80ab9bc2
e416dac239c883c5eed6713722beaffea82d2873
refs/heads/master
2021-07-23T11:43:09.994904
2017-11-02T22:58:33
2017-11-02T22:58:33
108,077,221
0
0
null
null
null
null
UTF-8
C++
false
false
4,617
cpp
#include "Globals.h" #include "Application.h" #include "ModuleWindow.h" #include "ModuleRender.h" #include <math.h> ModuleRender::ModuleRender(Application* app, bool start_enabled) : Module(app, start_enabled) { renderer = NULL; camera.x = camera.y = 0; camera.w = SCREEN_WIDTH; camera.h = SCREEN_HEIGHT; } // Dest...
[ "rustiktie@gmail.com" ]
rustiktie@gmail.com
2f6ae0c8eaea4f957e4707ed6562bf5ce93aa0fb
ab08c44b635f24ab08aee1de18b9caac07a230f0
/EscapeBuilding 4.17/Source/EscapeBuilding/OpenDoor.cpp
2143e0471ddbc39c56571185abea35b6b8072b09
[]
no_license
Mkaral/repos
50ea4d103ed72612209e95fc816e93d73048ae90
fa4103621737dcb86759451c284d364895fb1ad5
refs/heads/master
2021-01-16T18:22:12.519942
2017-08-16T08:23:42
2017-08-16T08:23:42
100,064,854
0
0
null
null
null
null
UTF-8
C++
false
false
1,199
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "OpenDoor.h" // Sets default values for this component's properties UOpenDoor::UOpenDoor() { // Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features // off to impr...
[ "marcos.counter@gmail.com" ]
marcos.counter@gmail.com
74920e16229d800abb4dd62a8c49e91d4143e39f
838e7a6c843119327e867a1927fc625ff0594ed7
/apps/t3player/src/Interface.h
7bd80dab1bc755b1506beba9bcc603ea3227cba2
[]
no_license
albarral/sam
4723c9651047f575e01ef2435302e4a5113a70c7
6a2fba2ba4ed98a1ef7da26b56ac6d12efcfa0ce
refs/heads/master
2020-05-18T07:32:11.981113
2016-01-15T21:52:09
2016-01-15T21:52:09
32,345,569
1
0
null
null
null
null
UTF-8
C++
false
false
1,138
h
/*************************************************************************** * Copyright (C) 2015 by Migtron Robotics * * gabriel@migtron.com * ***************************************************************************/ #ifndef _INTERFACE_H #define _INTERFACE_H #include "ui_Interface.h" #include <QPushBut...
[ "albarral@migtron.com" ]
albarral@migtron.com
bd262f603f877477dea99b1d46db3d4cdc2f8ed6
33b6d591ffa7e066f2e361ef4cba94731bcfcec3
/nocode/design_pattern/LuaForVisualCPlusPlus/lua515/lua_tinker/lua_tinker.h
0d347476cc9ade55a9a72e4f57a95dd4eece958a
[ "LicenseRef-scancode-other-permissive" ]
permissive
projectDaemon/nocode
c0a8f7d6b5f15127fcc7ffcd25e7883d70b0be85
972bf19f57ae034a6dba2e432e409484ecc665a8
refs/heads/master
2021-01-24T12:12:01.522986
2018-02-26T17:37:32
2018-02-26T17:37:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
24,732
h
// lua_tinker.h // // LuaTinker - Simple and light C++ wrapper for Lua. // // Copyright (c) 2005-2007 Kwon-il Lee (zupet@hitel.net) // // please check Licence.txt file for licence and legal issues. #if !defined(_LUA_TINKER_H_) #define _LUA_TINKER_H_ #include <new> extern "C" { #include "../lua515/src/lua.h" #incl...
[ "everettjf@live.com" ]
everettjf@live.com
1f01f099d47b6848f81203c5d1393ba5cdef5cff
be379c5decf2b8a8a7aac102e489563ae0da8593
/extern/irrogles/source/Irrlicht/CGUISpriteBank.h
e57c62c503a4ce84516f786312aa6f14516fda57
[]
no_license
codeman001/gsleveleditor
6050daf26d623af4f6ab9fa97f032d958fb4c5ae
d30e54874a4c7ae4fd0a364aa92a2082f73a5d7c
refs/heads/master
2021-01-10T13:09:01.347502
2013-05-12T09:14:47
2013-05-12T09:14:47
44,381,635
1
0
null
null
null
null
UTF-8
C++
false
false
2,309
h
// Copyright (C) 2002-2011 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlicht.h #ifndef __C_GUI_SPRITE_BANK_H_INCLUDED__ #define __C_GUI_SPRITE_BANK_H_INCLUDED__ #include "IrrCompileConfig.h" #ifdef _IRR_COMPILE_WITH_GUI...
[ "hongduc.pr@gmail.com" ]
hongduc.pr@gmail.com
e8319536d72c8e3e2993a8d05c9eb10806da4128
b9643226fed06909dc1e2daf417e78cfb3a42ec3
/real_estate_database_manager/Property.h
df439bfbead9b08a92eea4c0a3ba3e72a23ab6f1
[]
no_license
karimrhoualem/realEstateManager
d7f1117df929c2283009589aa7c5f6b5eafc1d9d
c3a04c9da4b8626119d0a12acce4977779a688b5
refs/heads/master
2020-12-05T20:50:17.376874
2020-01-07T04:52:04
2020-01-07T04:52:04
232,243,887
0
0
null
null
null
null
UTF-8
C++
false
false
1,137
h
/* Karim Rhoualem - Student #26603157 Dilara Omeroglu - Student #40030357 */ #pragma once #include <iostream> using namespace std; #include <string> #include "Client.h" #include "RealEstateAgent.h" #include "Date.h" class Property { private: string m_streetAddress; string m_cityName; Client* m_seller; // Initializ...
[ "karim.rhoualem@gmail.com" ]
karim.rhoualem@gmail.com
8c6e2b07b4e01cfd1122e0f88755d44d2d91be4e
627446942aa275ffc1323e467140c37566cd94ad
/LabProject08-0-1/Scene.cpp
11c373b44fe69992acecad8e586dd1acdbbc4703
[]
no_license
yeongjo/SchoolDx12_2
ec6f45114f4a74842d23d4fe70cfdf5ae0aea2e4
de947fe3955560a77ae82b62f8cc34a343ca0a15
refs/heads/master
2023-06-01T17:41:08.512774
2020-12-19T02:51:48
2020-12-19T02:51:48
376,394,420
0
0
null
null
null
null
UHC
C++
false
false
18,270
cpp
//----------------------------------------------------------------------------- // File: CScene.cpp //----------------------------------------------------------------------------- #include "stdafx.h" #include "Scene.h" CScene::CScene() { } CScene::~CScene() { } void CScene::BuildDefaultLightsAndMaterials() { m_nLi...
[ "songchung2466@gmail.com" ]
songchung2466@gmail.com
3efecf199269cc689a08f9ce8f8677823005ffad
428989cb9837b6fedeb95e4fcc0a89f705542b24
/erle/ros2_ws/install/include/std_msgs/msg/dds_opensplice/u_int64__type_support.hpp
96c8663405cafd0acc7ecbba774bd77b8c5ef22a
[]
no_license
swift-nav/ros_rover
70406572cfcf413ce13cf6e6b47a43d5298d64fc
308f10114b35c70b933ee2a47be342e6c2f2887a
refs/heads/master
2020-04-14T22:51:38.911378
2016-07-08T21:44:22
2016-07-08T21:44:22
60,873,336
1
2
null
null
null
null
UTF-8
C++
false
false
121
hpp
/home/erle/ros2_ws/build/std_msgs/rosidl_typesupport_opensplice_cpp/std_msgs/msg/dds_opensplice/u_int64__type_support.hpp
[ "igdoty@swiftnav.com" ]
igdoty@swiftnav.com
d6ff8447ec3690ed844db4b27aa9d4cbe83249c0
8d0947f1dac5aebef957f7fda9a4b3f8e2355235
/2015/main1/main1/work2.cpp
51939f289658182f993a2bbd75cc2b542ba00299
[]
no_license
LuckLittleBoy/Freshman
f6fb8b30415782cc18a3357b813422532759987e
7ab486f6b49333f3b6f9bc739606f38ac00f3cc5
refs/heads/master
2021-05-05T16:03:21.904338
2017-09-12T02:09:09
2017-09-12T02:09:09
103,209,919
0
0
null
null
null
null
GB18030
C++
false
false
521
cpp
#include<iostream> using namespace std; struct complex { double real,image; }; complex input() { complex x; cout<<"请输入一个复数的实部和虚部:"; cin>>x.real>>x.image; return x; } complex mul(complex x,complex y) { complex z; z.real=x.real*y.real-x.image*y.image; z.image=x.image*y.real+x.real*y.image; return z; } void o...
[ "1923570155@qq.com" ]
1923570155@qq.com
63133b638a389f5ab7fb65ff1ad0a70069efbfaf
6c77cf237697f252d48b287ae60ccf61b3220044
/aws-cpp-sdk-dynamodb/include/aws/dynamodb/model/AutoScalingTargetTrackingScalingPolicyConfigurationUpdate.h
852ff1df5d03e400f6d798dab33be37d180f5e36
[ "MIT", "Apache-2.0", "JSON" ]
permissive
Gohan/aws-sdk-cpp
9a9672de05a96b89d82180a217ccb280537b9e8e
51aa785289d9a76ac27f026d169ddf71ec2d0686
refs/heads/master
2020-03-26T18:48:43.043121
2018-11-09T08:44:41
2018-11-09T08:44:41
145,232,234
1
0
Apache-2.0
2018-08-30T13:42:27
2018-08-18T15:42:39
C++
UTF-8
C++
false
false
7,646
h
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
[ "magmarco@amazon.com" ]
magmarco@amazon.com
06f557c38a0dbbe3fdb342c8ef822c7962b14578
2d45bd1404bc1169bc847266071f2b4ce8871c78
/tensorflow/compiler/xla/service/hlo_runner.h
76d8b92bed484381a59d7f54e0a75bb7e75649ee
[ "Apache-2.0" ]
permissive
JuliaComputing/tensorflow
77681ce4aa19cce683d195c18fb6312ed267897b
a2e3dcdb4f439f05592b3e4698cb25a28d85a3b7
refs/heads/master
2021-07-07T06:00:11.905241
2018-09-04T23:52:11
2018-09-04T23:57:41
147,434,640
2
0
Apache-2.0
2018-09-05T00:01:43
2018-09-05T00:01:42
null
UTF-8
C++
false
false
7,654
h
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
70c05c9e38ea6081ee2ab30298c019817df2a08e
2a7e77565c33e6b5d92ce6702b4a5fd96f80d7d0
/fuzzedpackages/sanic/src/solve_LU.cpp
22e459c091b60cd0733f3ce6a382d0cadebaedb1
[]
no_license
akhikolla/testpackages
62ccaeed866e2194652b65e7360987b3b20df7e7
01259c3543febc89955ea5b79f3a08d3afe57e95
refs/heads/master
2023-02-18T03:50:28.288006
2021-01-18T13:23:32
2021-01-18T13:23:32
329,981,898
7
1
null
null
null
null
UTF-8
C++
false
false
501
cpp
#include <RcppEigen.h> // [[Rcpp::depends(RcppEigen)]] // [[Rcpp::export]] Eigen::MatrixXd solve_PPLU( Eigen::Map<Eigen::MatrixXd> a, Eigen::Map<Eigen::MatrixXd> b) { Eigen::PartialPivLU<Eigen::MatrixXd> lu(a); Eigen::MatrixXd x = lu.solve(b); return x; } // [[Rcpp::export]] Eigen::MatrixXd solve_SLU(...
[ "akhilakollasrinu424jf@gmail.com" ]
akhilakollasrinu424jf@gmail.com
06cf7b2287e62e5e24842037e6d495f1bcc6908a
fa5038cdd23db2c58112963a58f98162eb2153f7
/multisocket.h
a36f641b2c3eb1261ccd5004fe8544d877c9078c
[ "Apache-2.0" ]
permissive
Aharobot/iirlib
7cf67ba9245ca027620b3d0d43c11de0c47caa58
cf167d64e4a2157a31cefca2fe69dcbda1956525
refs/heads/master
2021-01-18T13:02:06.517628
2014-10-13T21:43:32
2014-10-13T21:43:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,158
h
// --*- C++ -*-- /* * IIRLIB Multi Socket Connection Modules * * Last modified on 2008 Feb 13th by Tetsunari Inamura * * Copyright (c) Tetsunari Inamura 1998-2008. * All Rights Reserved. */ #ifndef __MULTISOCKET_H__ #define __MULTISOCKET_H__ #include <stdio.h> #include <stdlib.h> #include <string.h> #i...
[ "inamura@nii.ac.jp" ]
inamura@nii.ac.jp
8ae1f6178628d0d99671b75d8306ffd33e938ffe
07e85c2ce56c3969cfb2ee164d929961e4697e5c
/WuwaFantasy/WuwaFantasy/cFrustum.cpp
47db3fa9ce5ccb4769e9b914b8945bcc0e239e09
[]
no_license
serment7/WuwaFantasy
85ad82e3431e30c4e6086cde3755a755514ce20b
10b5d30e1c19ff3909a56b801df91185029ff106
refs/heads/master
2020-12-24T07:48:48.610156
2019-12-24T13:30:35
2019-12-24T13:30:35
59,941,071
0
1
null
2016-06-05T05:01:25
2016-05-29T12:05:10
C++
SHIFT_JIS
C++
false
false
4,550
cpp
#include "stdafx.h" #include "cFrustum.h" cFrustum::cFrustum() { } cFrustum::~cFrustum() { Release(); } void cFrustum::SetFrustum(const D3DXMATRIXA16 & matV, const D3DXMATRIXA16 & matP) { ST_PC_VERTEX v; v.c = D3DXCOLOR(1, 0, 0, 1); //0,0,0,基?で絶面体を?く m_vecVertex.clear(); v.p = D3D...
[ "serment7@gmail.com" ]
serment7@gmail.com
16ad5fe2bcc934c0c807966a81d6708b26100631
47075e364b86f553a56cc2b0d04c476d282908f8
/AClass/LiteHTMLAttributes.cpp
b33959e53c5fb9cd742b701eba86a9d2edf1b8ff
[ "MIT" ]
permissive
quantxyz/approval_list
b5d6af8b4adff176ea515020f8ca12f1b0cc5bf3
7e37164f1c93374f22a27ae84948890d90143c45
refs/heads/master
2022-05-01T06:00:07.692672
2016-01-24T17:00:57
2016-01-24T17:00:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,638
cpp
/** * PROJECT - HTML Reader Class Library * * LiteHTMLAttributes.cpp * * Written By Gurmeet S. Kochar <gomzygotit@hotmail.com> * Copyright (c) 2004. All rights reserved. * * This code may be used in compiled form in any way you desire * (including commercial use). The code may be redistributed * unmodified...
[ "lktsepc@gmail.com" ]
lktsepc@gmail.com
9c79ee7216fed9040416e9641dd258d8c59feb77
59c47e1f8b2738fc2b824462e31c1c713b0bdcd7
/006-All_Test_Demo/000-vital/000-sodimas_notice/000-code/TFT_4.0_4.3_switch/splashform.h
850744411cfef25580327e9f544ccfb04b21a1ae
[]
no_license
casterbn/Qt_project
8efcc46e75e2bbe03dc4aeaafeb9e175fb7b04ab
03115674eb3612e9dc65d4fd7bcbca9ba27f691c
refs/heads/master
2021-10-19T07:27:24.550519
2019-02-19T05:26:22
2019-02-19T05:26:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
305
h
#ifndef SPLASHFORM_H #define SPLASHFORM_H #include <QWidget> namespace Ui { class SplashForm; } class SplashForm : public QWidget { Q_OBJECT public: explicit SplashForm(QWidget *parent = 0); ~SplashForm(); private: Ui::SplashForm *ui; }; #endif // SPLASHFORM_H
[ "1343726739@qq.com" ]
1343726739@qq.com
0558a436bf94f4d50863ca00755d42c18f1ac7ab
2400d76a8041b1240b12e2beac9723d2047a47a6
/library/include/model/typedefs.h
920bcc60143bd340d7d6ad9db42959718b46a1ac
[]
no_license
michalsuminski/Rental-Logic
be1b8fd7b722f784628deb429f152dc749a3083a
b75cfcd83dfecfdac07de2fc92c66464201dd0ad
refs/heads/main
2023-04-02T07:24:30.873604
2021-04-15T12:18:33
2021-04-15T12:18:33
355,577,362
0
0
null
null
null
null
UTF-8
C++
false
false
631
h
#ifndef CARRENTALPROJECT_TYPEDEFS_H #define CARRENTALPROJECT_TYPEDEFS_H #include <memory> #include <functional> class Address; class Client; class Item; class Rent; typedef std::shared_ptr <Client> ClientPtr; typedef std::shared_ptr <Rent> RentPtr; typedef std::shared_ptr <Item> ItemPtr; typedef std::shared_ptr <Add...
[ "michal.suminski@op.pl" ]
michal.suminski@op.pl
caa947584389ec00a2169b6e3b6fb8519df5d95b
d14650b04365c11a5d43c33f2acd4bbfae6b25b2
/app/src/AppMesh.cpp
63cb87a3c45424465c1c99726fa0655268dac3ba
[ "Apache-2.0" ]
permissive
ChaseDream2015/Viry3D
6a16458b588ba552ac1d2e5e1533bc627a06a123
b10f7b1259d246f4bdb9e389a24820ef86d5660f
refs/heads/master
2021-06-27T12:35:35.516019
2017-09-15T16:42:16
2017-09-15T16:42:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,915
cpp
/* * Viry3D * Copyright 2014-2017 by Stack - stackos@qq.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicabl...
[ "stackos@qq.com" ]
stackos@qq.com
84e370147038858df7cad2347e4653ffdca337a2
21fd3fa22e2483acf2c078aede31ab4cdbf19a3d
/src/core/transformations/morph_openclose.cpp
99292eb57650cfc0ae8a0b7021b3cd6935199852
[]
no_license
andre-wojtowicz/image-processing-project-student
449f751f3a05b994f88ba24addc0943ff5f7cf2c
9258c9a0f14953bd6b048b93b6a9e1cb33db2722
refs/heads/master
2021-01-10T14:30:47.377958
2019-10-14T08:37:13
2019-10-14T08:37:13
52,097,014
6
1
null
null
null
null
UTF-8
C++
false
false
1,024
cpp
#include "morph_openclose.h" #include "morph_erode.h" #include "morph_dilate.h" MorphOpenClose::MorphOpenClose(PNM* img) : MorphologicalOperator(img), m_type(Open) { } MorphOpenClose::MorphOpenClose(PNM* img, ImageViewer* iv) : MorphologicalOperator(img, iv), m_type(Open) { } PNM* MorphOpenClose::transform(...
[ "andre@amu.edu.pl" ]
andre@amu.edu.pl
bacfbdf112bdb9b3e4b8c4d0a797ce6a811f4ab4
b65acdd4e28bac5b0b0cc088bded08cc80437ad8
/MVSProg/Task15/Project1/Project1/Source.cpp
bd5fc8c5a4e9f48ee35ebf210ca70debefacdac5
[]
no_license
YulianStrus/Examples-of-academic-homeworks
44794bb234626319810f444a3115557b4e59d54f
f2fb2b5e02f069ff8f0cbc1a95c472ad2becad4c
refs/heads/master
2023-05-27T16:09:41.220326
2021-06-02T10:04:07
2021-06-02T10:04:07
313,245,187
0
0
null
null
null
null
UTF-8
C++
false
false
1,735
cpp
#include "iostream" using namespace std; void main() { int n, l, j, i, h, k=1; char s; cout << "Choose the type of rectangular triangle: " << endl; cout << "1 +\t " << "2 +\t " << "3 +++\t " << "4 +++\t " << endl; cout << " ++\t " << " ++\t " << " ++\t " << " ++\t " << endl; cout << " +++\t " << " +++\t...
[ "stryulvas@ukr.net" ]
stryulvas@ukr.net
75296b5c1ed5b2a5a9ee0d3c12725705a23213ec
98317d55cb8053131e700f5ad20c2f91481db4cd
/src/amount.h
3027e070bc58997debfbb656d62bf7f306addbad
[ "MIT" ]
permissive
fertcoin/fertcoin
4816ad7c08a64698177f0cc7d1e581dc1b954c85
1d644a3a15baea52acd45e82531bb1a839787d80
refs/heads/main
2023-07-10T01:22:09.630763
2021-08-10T21:37:17
2021-08-10T21:37:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,995
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2017 The PIVX developers // Copyright (c) 2018 The fertcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php....
[ "softdeals247@gmail.com" ]
softdeals247@gmail.com
38fad3e6f6bafefad6389fa3e89698cea730ca5a
088ab92e4f8251fdceef9966149ea50f027f18c0
/Assignment1/Q3.cpp
2f1efb1c00be8e259f1c21d59fef47789dfe7de4
[]
no_license
aashishbansal23/DataStructures-Algorithm-Practice
d221e9ececb360d781e33925e00222401fb501c8
53fcc0c881cbb720c0878c3dbaaa4330506f0f9b
refs/heads/master
2023-05-03T23:43:20.453563
2021-05-24T16:32:09
2021-05-24T16:32:09
313,001,031
2
0
null
2021-03-17T15:42:48
2020-11-15T09:52:41
C++
UTF-8
C++
false
false
124
cpp
#include<stdio.h> int main() { int i; int arr[5] = {1}; for(i=0; i<5; i++){ printf("%d\n", arr[i]); } return 0; }
[ "aashishbansal0289@gmail.com" ]
aashishbansal0289@gmail.com
c5d8a95187a65008742523847a9cb0ccddad6afd
5bebabc46810b6d211daf9707ecb537534595f9a
/repositories/araSoft/programs/testing/dbWriteIdentify.cc
45bf5b842e59839afd52efb78e37e7e3dc3b9a82
[]
no_license
osu-particle-astrophysics/ara-daq
9b5842f4f1ed21ada0d5796123db5001f569603e
a35d2fb89fa7957e153210f9884ecc4d9af0d4cf
refs/heads/master
2021-01-23T14:31:10.499761
2017-08-23T15:30:28
2017-08-23T15:30:28
93,254,814
0
0
null
null
null
null
UTF-8
C++
false
false
8,654
cc
// // dbWriteIdentify writes a daughterboard's identification EEPROM page 0. // // The remaining pages are undefined right now: there are several // possibilities: either calibration data (unlikely given that it's only // a 32k EEPROM and there are a lot more cal points for a DDA), // operation data (more likely - as ...
[ "clark.2668@osu.edu" ]
clark.2668@osu.edu
ee0b3059e9c58bbc3b38881c4eb026acd98dc3fc
6101cf5997a2ee6b526d731fe094eb8fe102ddbf
/src/qt/recentrequeststablemodel.h
38a0694cfff2900a0fb70d6df384a8a7f6481f45
[ "MIT" ]
permissive
expicoin/expicore
d82458b54791f0f1b90fe394aa8c3f015b70e4d2
00461a9c66b2c80e6fa98601e5adabc7c50ff056
refs/heads/master
2020-05-23T09:01:43.348834
2019-05-26T13:29:47
2019-05-26T13:29:47
186,699,519
3
2
null
null
null
null
UTF-8
C++
false
false
3,305
h
// Copyright (c) 2011-2014 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_QT_RECENTREQUESTSTABLEMODEL_H #define BITCOIN_QT_RECENTREQUESTSTABLEMODEL_H #include "walletmodel.h" #includ...
[ "48990656+expicoin@users.noreply.github.com" ]
48990656+expicoin@users.noreply.github.com
b1b219e8a8596060c714b819cf3b3732778d62f3
027ad99a3fa9231dd96dd610fdbebd26f9fd02db
/Projects/manager_CameraLinkVis/camera_linkvis_manager.cxx
4621a98cd857c45640b685ce471120679b9081ac
[ "BSD-3-Clause" ]
permissive
droidoid/MoPlugs
ee5b6162a3a504d43d8a62ab221cfe72317afe25
fce52e6469408e32e94af8ac8a303840bc956e53
refs/heads/master
2020-12-19T04:26:07.530778
2019-08-07T22:05:07
2019-08-07T22:05:07
235,619,955
1
0
BSD-3-Clause
2020-01-22T16:54:13
2020-01-22T16:54:12
null
UTF-8
C++
false
false
6,904
cxx
////////////////////////////////////////////////////////////////////////////////////////////////// // // file: camera_linkvis_manager.cpp // // Author Sergey Solokhin (Neill3d) // // // GitHub page - https://github.com/Neill3d/MoPlugs // Licensed under BSD 3-Clause - https://github.com/Neill3d/MoPlugs/blob/master/LICE...
[ "neill@bk.ru" ]
neill@bk.ru
21157b7000f23a5f47c97b833f576be93b5ddb41
cf86574f8dc83ac340b9f7816fb55c1583c3b5c8
/ios/Pods/Flipper-Folly/folly/portability/Builtins.h
109e620e5037564ec6587ee7b0e0a548ba0e9355
[ "Apache-2.0", "MIT" ]
permissive
juxtin/yarnu
94b9f6068ebf3dd46b02173eb2cb9b394a06c969
a3c3748a6738283644f252f87244880ca430c2f4
refs/heads/master
2022-12-30T07:17:56.708695
2020-09-28T19:29:02
2020-09-28T19:29:02
299,406,578
0
1
null
null
null
null
UTF-8
C++
false
false
4,673
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required ...
[ "juxtin@github.com" ]
juxtin@github.com
095b9ef490dd909b0a4114b91b15e07ad19e775b
22b8a4e1683b185718479c244cb390cdbed9abd9
/PA4_Qin_Yifeng/proj4.cpp
5de0de7ce74447bdde900110059e26ee46542d8e
[]
no_license
YifengQ/CS-202
18eb4454aef9bc5d761ec2bf085e534bcf9f8ae2
5d6ffb18e65b2dee02514749d470b6cd0d01a5a5
refs/heads/master
2021-06-24T21:55:17.851888
2021-04-10T21:47:08
2021-04-10T21:47:08
216,172,288
0
0
null
null
null
null
UTF-8
C++
false
false
19,300
cpp
//Yifeng Qin //CS202 //10/3/17 //Project 4 /* Layout ------------------ Declared classes / Prototypes Menu Functions Prototype Main Menu Functions Menu Functions Class Sensor Functions Class Car Functions Class Agency Functions */ #include <iostream> #include <fstream> using namespace std; const int maxsiz...
[ "yifengqin88@gmail.com" ]
yifengqin88@gmail.com
bdf24097e097669b211c714772bc8df5805ee04e
0b3d390032c56decc837dd8fe0f2ad676409e6e6
/src/SerialPort.cpp
64a479c0fd4a9d73c04b652d555507dbcfcf59c3
[]
no_license
bielpiero/lucky_bea
fffc95cf3afde4487d321da57c67646b76be2e90
f822020d1b85b4e2ab710269d79a071bfe33d1c7
refs/heads/master
2021-01-17T00:38:51.749145
2020-09-23T15:06:45
2020-09-23T15:06:45
28,190,460
2
0
null
null
null
null
UTF-8
C++
false
false
3,844
cpp
#include "SerialPort.h" const uint16_t SerialPort::vendorId = 0x1ffb; const size_t SerialPort::nProductIds = 4; const uint16_t SerialPort::productIds[] = { 0x0089, 0x008a, 0x008b, 0x008c }; SerialPort::SerialPort(){ bool found = false; libusb_init(&ctx); libusb_device** list; int count = libusb_get_device_list...
[ "biel.piero@gmail.com" ]
biel.piero@gmail.com
ba8204e06ce5265d9c60750dfbba0eb54e58aa24
747f684c3e988234877d581f175cddf19792d0fa
/Tests/test_kernel_module.cpp
9bd9d9bf6150e7577a371d80d6adb24878bcb16f
[]
no_license
pv-k/NNLib4
0dd07a708290ca875c62ba279438a7f02a79acfa
0ec77f2f915778a4734d1158e2ba0875b9c8ec2d
refs/heads/master
2020-04-05T23:33:07.257135
2013-06-13T17:59:24
2013-06-13T17:59:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,969
cpp
#include <boost/test/unit_test.hpp> #include <vector> #include "test_utilities.h" #include "Tensor.h" #include "ConstantInitializer.h" #include "AbsRegularizer.h" #include "KernelModule.h" #include "MaxPoolingKernel.h" #include "KernelFactory.h" BOOST_AUTO_TEST_CASE(TestKernelModule_max_pooling) { size_t num_input_ke...
[ "pvmailx5@mail.ru" ]
pvmailx5@mail.ru
0444074a4fa63e923f802774192118b6011883df
1118208a7f68175ce3138af84bd81e959e731f67
/cpp/ch7/7_3.cpp
eacbc270a4614221d817b0896f46a47b43d8868f
[]
no_license
yoonsch217/crackingthecodinginterview6th
ff18c4275be8862e4a0d0e9b22ef265aed20873a
60a3f3457be72926e701d21552b5851273a21ad5
refs/heads/master
2022-01-08T01:16:16.347074
2022-01-02T17:56:46
2022-01-02T17:56:46
201,307,755
0
0
null
null
null
null
UTF-8
C++
false
false
781
cpp
class Jukebox{ private: CDPlayer cdPlayer; User user; set<CD> cdCollection; SongSelector ts; public: Jukebox(CDPlayer cdPlayer, User user, set<CD> cdCollection, SongSelector ts){ } Song getCurrentSong(){return ts.getCurrentSong();} void setUser(User u){this.user = u;} }; class CDPlayer{ private:...
[ "yoonsch217@snu.ac.kr" ]
yoonsch217@snu.ac.kr
c5650c03166bf06b32aa5935cda0ebcbe03e2621
d0317ba18b027ad04d802cadaf2d69dc319d98cb
/lib/UnoCore/Backends/CPlusPlus/Uno/ObjectModel.h
b66b8570b72ea4c43ede05f37763c94b482e67bf
[ "MIT" ]
permissive
afrog33k/uno
aa1aebf2edd7c40ac9e37b95c8e02703f492c73f
adf8035c96c562ac6c50d7b08dbf8ee8457befb1
refs/heads/master
2020-04-09T01:55:57.759640
2018-11-01T18:10:01
2018-11-01T18:10:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
21,960
h
// @(MSG_ORIGIN) // @(MSG_EDIT_WARNING) #pragma once #include <atomic> #include <cstdarg> #include <cstdlib> #include <exception> #if @(REFLECTION:Defined) #include <Uno/Reflection.h> #else #include <Uno/Memory.h> #endif @{Uno.Exception:ForwardDeclaration} struct uObjectMonitor; /** \addtogroup ObjectModel @{...
[ "erik@fusetools.com" ]
erik@fusetools.com
0140fec62b05564bd68a97f0bc1588a2bd04d267
a1fe4dc3a7a4911607ac55a2bd7da19b29f36849
/libnet/base/Date.cc
5650c454ea318bf0867347065b72fe5618e7df66
[]
no_license
Monsterwi/myWebserver
8964c6773abf637bea85dc2d2e8493590498a7dd
264dd6079840188f76e39b88404b11edf70939c0
refs/heads/main
2023-07-27T03:55:28.671566
2021-09-10T14:46:26
2021-09-10T14:46:26
394,996,851
1
0
null
null
null
null
UTF-8
C++
false
false
1,717
cc
#include "libnet/base/Date.h" #include <stdio.h> // snprintf #include <time.h> // struct tm namespace libnet { namespace detail { char require_32_bit_integer_at_least[sizeof(int) >= sizeof(int32_t) ? 1 : -1]; // algorithm and explanation see: // http://www.faqs.org/faqs/calendars/faq/part2/ // http://blog.csdn.net...
[ "53996386+Monsterwi@users.noreply.github.com" ]
53996386+Monsterwi@users.noreply.github.com
2678bd45e77e9ca8bc90d7c7ab7e5385525f7c9f
5f265e8a518b45e770a5ea3931a0913256f9a951
/Source/Shooter/HeroAIController.cpp
9dae9d24c78383d17850054ef6bb57f627e7acce
[]
no_license
filipstachowiak20/Shooter
5ce00104da30e9d5135e8c2f2672cbdf0cdf84b6
a397a8a4c156335233f2fa48a817b1233f4dbac6
refs/heads/main
2023-05-05T17:27:38.329250
2021-05-19T14:48:29
2021-05-19T14:48:29
367,042,446
0
0
null
null
null
null
UTF-8
C++
false
false
3,925
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "HeroAIController.h" #include "Hero.h" #include "Perception/AIPerceptionComponent.h" #include "Perception/AISenseConfig_Sight.h" #include "BehaviorTree/BehaviorTree.h" #include "BehaviorTree/BlackboardData.h" #include "BehaviorTre...
[ "filipstachowiak20@gmail.com" ]
filipstachowiak20@gmail.com
a2013b57c8968c22d4d93777b40868d3a2d72bb8
75452de12ec9eea346e3b9c7789ac0abf3eb1d73
/src/developer/forensics/crash_reports/info/main_service_info.h
54bbcfd9e96d76691381e68b931f7a801b7a8f2c
[ "BSD-3-Clause" ]
permissive
oshunter/fuchsia
c9285cc8c14be067b80246e701434bbef4d606d1
2196fc8c176d01969466b97bba3f31ec55f7767b
refs/heads/master
2022-12-22T11:30:15.486382
2020-08-16T03:41:23
2020-08-16T03:41:23
287,920,017
2
2
BSD-3-Clause
2022-12-16T03:30:27
2020-08-16T10:18:30
C++
UTF-8
C++
false
false
1,295
h
// Copyright 2019 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SRC_DEVELOPER_FORENSICS_CRASH_REPORTS_INFO_MAIN_SERVICE_INFO_H_ #define SRC_DEVELOPER_FORENSICS_CRASH_REPORTS_INFO_MAIN_SERVICE_INFO_H_ #include <...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
6269ba354926148026e692cb95bd16888564dd43
ba9322f7db02d797f6984298d892f74768193dcf
/emr/src/model/DescribeClusterServiceRequest.cc
b35aecf8a0dc080e1a5c177f3d7e62ab17b92ef2
[ "Apache-2.0" ]
permissive
sdk-team/aliyun-openapi-cpp-sdk
e27f91996b3bad9226c86f74475b5a1a91806861
a27fc0000a2b061cd10df09cbe4fff9db4a7c707
refs/heads/master
2022-08-21T18:25:53.080066
2022-07-25T10:01:05
2022-07-25T10:01:05
183,356,893
3
0
null
2019-04-25T04:34:29
2019-04-25T04:34:28
null
UTF-8
C++
false
false
2,264
cc
/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
[ "haowei.yao@alibaba-inc.com" ]
haowei.yao@alibaba-inc.com
22d02448fe3b3aa519a247b325651b6f65b7a287
cc5a1bf6996614009c6370ee36d3210da5cb7139
/runtime/mac/AirGame-desktop.app/Contents/Resources/res/ch23/LostRoutes/frameworks/cocos2d-x/cocos/editor-support/cocostudio/CCSGUIReader.h
9c50b6a8ed387a929a8cc66842a15f59da23b1c4
[ "MIT" ]
permissive
huangjin0/AirGame
fd8218f7bbe2f9ca394156d20ee1ff1f6c311826
0e8cb5d53b17fb701ea7fe34b2d87dde473053f3
refs/heads/master
2021-01-21T18:11:22.363750
2017-05-23T06:59:45
2017-05-23T06:59:45
92,020,449
0
0
null
null
null
null
UTF-8
C++
false
false
11,389
h
/**************************************************************************** Copyright (c) 2013-2014 Chukong Technologies Inc. http://www.cocos2d-x.org 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...
[ "772361448@qq.com" ]
772361448@qq.com