repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
rotx/gpsctl
sl_bits.h
// // Created by <NAME> on 10/24/17. // #ifndef GPSCTL_SL_BITS_H #define GPSCTL_SL_BITS_H #include <stdlib.h> #include <stdint.h> #include <stdbool.h> uint64_t getBitField_slBits( uint64_t value, uint64_t mask ); bool isBitSet_slBits( uint64_t value, int bitNum ); uint64_t setBit_slBits( uint64_t value, int bitNum, ...
rotx/gpsctl
ublox.h
// // Created by <NAME> on 10/20/17. // #ifndef GPSCTL_UBLOX_H #define GPSCTL_UBLOX_H #include <stdlib.h> #include <stdint.h> #include <stdbool.h> #include <stdio.h> #include <string.h> #include <fcntl.h> #include <unistd.h> #include <sys/termios.h> #include "sl_general.h" #include "sl_bits.h" #include "sl_buffer.h" ...
rotx/gpsctl
sl_serial.c
<filename>sl_serial.c // // Created by <NAME> on 10/22/17. // // these defines allow compiling on both an OS X development machine and the target Raspberry Pi. If different // development environments or target machines are needed, these will likely need to be tweaked. #define _XOPEN_SOURCE 700 #define _DARWIN_C_SOUR...
rotx/gpsctl
sl_return.h
<gh_stars>10-100 // // Created by <NAME> on 11/3/17. // #ifndef GPSCTL_SL_RESULT_H #define GPSCTL_SL_RESULT_H #include <stdint.h> #include <stdbool.h> // opaque type for function return values... typedef void* slReturn; // managed by slReturn internally; users shouldn't do anything with it directly... // co...
rotx/gpsctl
sl_buffer.h
// // Created by <NAME> on 10/24/17. // #ifndef GPSCTL_SL_BUFFER_H #define GPSCTL_SL_BUFFER_H #include <memory.h> #include <stdlib.h> #include <execinfo.h> #include <stdio.h> #include <unistd.h> #include <stdbool.h> #include <stdarg.h> #include <fcntl.h> #include <stdint.h> #include <termios.h> #include <sys/stat.h> ...
rotx/gpsctl
gpio.h
<gh_stars>0 #ifndef GPSCTL_GPIO_H #define GPSCTL_GPIO_H #define GPSCTL "gpsctl" #define GPIO_CHIP "gpiochip0" #define PPS_PIN 4 #endif // GPSCTL_GPIO_H
rotx/gpsctl
sl_bits.c
<filename>sl_bits.c // // Created by <NAME> on 10/24/17. // // these defines allow compiling on both an OS X development machine and the target Raspberry Pi. If different // development environments or target machines are needed, these will likely need to be tweaked. #define _XOPEN_SOURCE 700 #define _DARWIN_C_SOURC...
rotx/gpsctl
sl_buffer.c
<filename>sl_buffer.c // // Created by <NAME> on 10/24/17. // // these defines allow compiling on both an OS X development machine and the target Raspberry Pi. If different // development environments or target machines are needed, these will likely need to be tweaked. #define _XOPEN_SOURCE 700 #define _DARWIN_C_SOU...
rotx/gpsctl
sl_options.c
// // Created by <NAME> on 10/26/17. // // these defines allow compiling on both an OS X development machine and the target Raspberry Pi. If different // development environments or target machines are needed, these will likely need to be tweaked. #define _XOPEN_SOURCE 700 #define _DARWIN_C_SOURCE #define _POSIX_C_S...
maciekgajewski/AMQP-CPP
src/linux_tcp/openssl.h
/** * OpenSSL.h * * Header file in which we list all openssl functions in our own namespace * that we call instead of the actual openssl functions. This allows us to * intercept the calls and forward them to a dynamically loaded namespace * * @author <NAME> <<EMAIL>> * @copyright 2018 Copernica BV *...
marcorod94/Classic-Snake
Source/Module/Module.h
<filename>Source/Module/Module.h #ifndef Module_h #define Module_h #include "Main/Globals.h" class Module { public: bool enableNextFrame = false; explicit Module(bool active = true) : active(active){} virtual ~Module() = default; virtual bool Init() { return true; } virtual UpdateStatus PreUpdate() { r...
marcorod94/Classic-Snake
Source/Module/ModuleRender.h
#ifndef ModuleRender_h #define ModuleRender_h #include "Module.h" struct SDL_FRect; struct SDL_Renderer; struct SDL_Rect; struct SDL_Texture; struct RenderObject { SDL_Texture* texture = nullptr; SDL_FRect renderSection; SDL_Rect sourceSection; }; class ModuleRender : public Module { public: ...
marcorod94/Classic-Snake
Source/Game/ModuleUI.h
#ifndef ModuleUI_H #define ModuleUI_H #include "Module/Module.h" struct RenderObject; enum class STATE { MENU, PLAY, WIN, LOOSE }; class ModuleUI : public Module { public: explicit ModuleUI(bool active = true); ~ModuleUI() override = default; bool Init() override; UpdateStatus Update() override; bool Clean...
marcorod94/Classic-Snake
Source/Utils/Collision.h
<reponame>marcorod94/Classic-Snake #ifndef Collision_H #define Collision_H #include "SDL.h" class Collision { public: bool static IsOverLaping(const SDL_Rect* source, const SDL_Rect* target) { return source->x < target->x + target->w && source->x + source->w > target->x && source->y < target->y + target->h ...
marcorod94/Classic-Snake
Source/Module/ModuleAudio.h
#ifndef ModuleAudio_h #define ModuleAudio_h #include "Module.h" constexpr float DEFAULT_MUSIC_FADE_TIME = 2.0F; struct _Mix_Music; struct Mix_Chunk; using Mix_Music = _Mix_Music; class ModuleAudio : public Module { public: ModuleAudio() = default; ~ModuleAudio() override = default; bool Init() override; bool C...
marcorod94/Classic-Snake
Source/Utils/Animation.h
<filename>Source/Utils/Animation.h #ifndef Animation_H #define Animation_H #include <vector> struct SDL_Rect; class Animation { public: float speed = 1.F; std::vector<SDL_Rect> frames; Animation() = default; SDL_Rect& GetCurrentFrame() { currentFrame += speed; if (currentFrame >= static_cast<float>(frames....
marcorod94/Classic-Snake
Source/Game/ModuleSnake.h
#ifndef ModuleSnake_h #define ModuleSnake_h #include "Module/Module.h" struct Mix_Chunk; struct SDL_FRect; struct SDL_Rect; struct SDL_Texture; struct RenderObject; constexpr int SNAKE_WIDTH = 30; constexpr float DELTA_ANGLE = 90.F; constexpr int MAX_SQUARE_WIDTH = SCREEN_WIDTH / SNAKE_WIDTH; constexpr...
marcorod94/Classic-Snake
Source/Module/ModuleWindow.h
<reponame>marcorod94/Classic-Snake<filename>Source/Module/ModuleWindow.h #ifndef ModuleWindow_h #define ModuleWindow_h #include "Module.h" struct SDL_Surface; struct SDL_Window; class ModuleWindow : public Module { public: SDL_Window* window = nullptr; SDL_Surface* screenIcon = nullptr; SDL_Surface* screenSurface...
marcorod94/Classic-Snake
Source/Main/Globals.h
#ifndef Globals_h #define Globals_h #include "MathGeoLib.h" #include "SDL_rect.h" #include <map> #include <stdio.h> #include <string> #include <vector> #define LOG(format, ...) log(__FILE__, __LINE__, format, __VA_ARGS__); void log(const char file[], int line, const char* format, ...); enum class UpdateStatus { CO...
marcorod94/Classic-Snake
Source/Module/ModuleTexture.h
<reponame>marcorod94/Classic-Snake #ifndef ModuleTexture_h #define ModuleTexture_h #include "Module.h" struct SDL_Surface; struct SDL_Texture; typedef struct _TTF_Font TTF_Font; class ModuleTexture : public Module { public: ModuleTexture() = default; ~ModuleTexture() override; bool Init() override; bool CleanUp...
marcorod94/Classic-Snake
Source/Utils/RandomGenerator.h
<reponame>marcorod94/Classic-Snake #ifndef RandomGenerator_H #define RandomGenerator_H #include <random> class RandomGenerator { public: template<class T> T static GetRandomNumber(T min, T max) { std::random_device randomDevice; std::mt19937 engine(randomDevice()); std::uniform_real_distribution<T> distribut...
marcorod94/Classic-Snake
Source/Game/ModulePlayScene.h
<filename>Source/Game/ModulePlayScene.h<gh_stars>0 #ifndef ModulePlayScene_h #define ModulePlayScene_h #include "Module/Module.h" struct RenderObject; class ModulePlayScene : public Module { public: explicit ModulePlayScene(bool active = true); ~ModulePlayScene() override = default; bool Init() overri...
marcorod94/Classic-Snake
Source/Game/ModuleScore.h
#ifndef ModuleScore_H #define ModuleScore_H #include "Module/Module.h" struct RenderObject; struct SDL_Texture; class ModuleScore : public Module { public: int value = 0; std::vector<SDL_Texture*> numberTextures; RenderObject* cent = nullptr; RenderObject* ten = nullptr; RenderObject* unit = nullptr; float3 ...
marcorod94/Classic-Snake
Source/Module/ModuleInput.h
#ifndef ModuleInput_h #define ModuleInput_h #include "Module.h" constexpr int MAX_KEYS = 300; constexpr int MOUSE_BUTTONS = 5; enum class EventWindow { QUIT = 0, HIDE, SHOW, COUNT }; enum class KeyState { IDLE, DOWN, REPEAT, UP }; class ModuleInput : public Module { public: ModuleInput(); ~ModuleInput() ...
megabug/LMIC-node
src/boards/bsf_disco_l072cz_lrwan1.h
/******************************************************************************* * * File: bsf_disco_l072cz_lrwan1.h * * Function: Board Support File for ST B-L072Z-LRWAN1 Discovery kit. * * Copyright: Copyright (c) 2021 <NAME> * * License: MIT License. See accompanying LICENSE file....
megabug/LMIC-node
src/boards/bsf_bluepill_f103c8.h
/******************************************************************************* * * File: bsf_bluepill_f103c8.h * * Function: Board Support File for STM32 F103C8T6 'bluepill' 64k and 128k * with external SPI LoRa module. * * Copyright: Copyright (c) 2021 <NAME> * * Licens...
xuexiaobai/LearnGitCode
LearnGitCode/Pods/Target Support Files/DataManager/DataManager-umbrella.h
<gh_stars>0 #ifdef __OBJC__ #import <UIKit/UIKit.h> #else #ifndef FOUNDATION_EXPORT #if defined(__cplusplus) #define FOUNDATION_EXPORT extern "C" #else #define FOUNDATION_EXPORT extern #endif #endif #endif #import "DataOperation.h" FOUNDATION_EXPORT double DataManagerVersionNumber; FOUNDATION_EXPORT const unsigned ch...
xuexiaobai/LearnGitCode
LearnGitCode/LearnGitCode/TFTimer.h
// // TFTimer.h // LearnGitCode // // Created by TF on 2018/11/1. // Copyright © 2018年 TF. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN @interface TFTimer : NSObject @end NS_ASSUME_NONNULL_END
Campeanu/MySQLTuner
vendor/mysql_connector/include/jdbc/cppconn/build_config.h
/* * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2.0, as * published by the Free Software Foundation. * * This program is also distributed with...
Campeanu/MySQLTuner
vendor/mysql_connector/include/jdbc/cppconn/connection.h
/* * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2.0, as * published by the Free Software Foundation. * * This program is also distributed with...
alessandro-antonelli/SOL-2016
Esercitazione 08/es1.c
<reponame>alessandro-antonelli/SOL-2016<gh_stars>0 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/wait.h> int main(int argc, char* argv[]) { if(argc < 2) { printf("Inserire un comando\n"); return -1; } printf("********************************...
alessandro-antonelli/SOL-2016
Esercitazione 10/es1_server.c
<gh_stars>0 #include "./es1_header.h" void Cleanup() { unlink(SOCKNAME); } int main() { Cleanup(); struct sockaddr_un indirizzo; indirizzo.sun_family = AF_UNIX; strncpy(indirizzo.sun_path, SOCKNAME, strlen(SOCKNAME)+1); int sfd; ControllaENO((sfd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1, "[server] socket"); ...
alessandro-antonelli/SOL-2016
Esercitazione 01/es2.c
#include <stdio.h> int main(int argc, char* argv[], char* envp[]) { printf("Sono stati passati al programma %d argomenti. Segue la lista:\n", argc); int i = 0; while(argv[i] != NULL) { printf("Argomento numero %d: %s\n", i, argv[i]); i++; } printf("===========================================================...
alessandro-antonelli/SOL-2016
Esercitazione 09/es1.c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <pthread.h> static pthread_mutex_t semaforo = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t condizione = PTHREAD_COND_INITIALIZER; int buffer; int vuoto=1; void* consumatore(void* arg) { while(1) { pthread_mutex_lock(&semaforo); while(vuoto) ...
alessandro-antonelli/SOL-2016
Esercitazione 10/es1_header.h
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <sys/socket.h> #include <sys/un.h> #include <sys/types.h> #include <sys/wait.h> #include <fcntl.h> #define SOCKNAME "./mysock" #define LEN 1024 #define Controlla(guardia, testoerrore) \ if(guardia) \ { ...
alessandro-antonelli/SOL-2016
Esercitazione 09/es3.c
#include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <time.h> #define N 10 //thread consumatori - numero totale di messaggi che i produttori producono #define M 5 //thread produttori #define INSERIMENTI 200000 #define TERMINAZIONE -1 struct _nodo { int value; struct _nodo* prev; struct _nodo* next;...
alessandro-antonelli/SOL-2016
Esercitazione 02/es1.c
<filename>Esercitazione 02/es1.c #include <stdio.h> #include <stdlib.h> #include <string.h> void tokenizer(char *stringa, FILE *out) { char* pezzoStringa = strtok(stringa, " "); while(pezzoStringa != NULL) { fprintf(out, "%s\n", pezzoStringa); pezzoStringa = strtok(NULL, " "); } } int main(int argc, char* arg...
alessandro-antonelli/SOL-2016
Esercitazione 03/es1.c
#include <stdio.h> #include <stdlib.h> #define CHECK_CALL_PTR(file,stringa) \ if((file)==NULL) { \ perror(#stringa); \ exit(EXIT_FAILURE); \ } int main(int argc, char* argv[]) { FILE* file; CHECK_CALL_PTR(file=fopen(argv[1], "r"), Aprendo il file richiesto); }
alessandro-antonelli/SOL-2016
Esercitazione 03/es2.c
<reponame>alessandro-antonelli/SOL-2016<gh_stars>0 #include <stdio.h> #include <stdlib.h> #include <string.h> int ConfrontaMatrici(int (*funzione) (const void*, const void*, size_t), float* M1, float* M2, int bytes) { return funzione(M1, M2, bytes); } int main(int argc, char*argv[]) { char* LOL; int size = (int) s...
alessandro-antonelli/SOL-2016
Esercitazione 02/es2.c
#include <stdio.h> #include <string.h> void tokenizer_r(char *stringa, FILE *out) { char* dovesonorimasto; char* token = strtok_r(stringa, " ", &dovesonorimasto); while(token != NULL) { fprintf(out, "%s\n", token); token = strtok_r(NULL, " ", &dovesonorimasto); } } int main(int argc, char* argv[]) { int i; ...
alessandro-antonelli/SOL-2016
Esercitazione 10/es1_client.c
#include "./es1_header.h" int main() { struct sockaddr_un indirizzo; indirizzo.sun_family = AF_UNIX; strncpy(indirizzo.sun_path, SOCKNAME, strlen(SOCKNAME)+1); int sfd = socket(AF_UNIX, SOCK_STREAM, 0); ControllaENO(sfd == -1, "[client] socket"); printf("[client] In attesa del server...\n"); int retval = -1; ...
alessandro-antonelli/SOL-2016
Esercitazione 07/es3.c
<gh_stars>0 #include <stdio.h> #include <stdlib.h> #include <unistd.h> int main(int argc, char* argv[]) { if(argc!=2) { printf("Specificare il numero di processi!\n"); return -1; } int pid, i; for(i=0; i < atoi(argv[1]); i++) { pid = fork(); if(pid == -1) { perror("Fork"); return -1; } if(pid == 0) { retur...
alessandro-antonelli/SOL-2016
Esercitazione 07/es4.c
#include <stdlib.h> #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> int CreaFiglio(int i) { if(i != 0) { int j; for(j=0; j<i; j++) putchar('-'); printf("%d: creo un processo figlio\n", getpid() ); return fork(); } else { printf("%d: sono l'ultimo discendente\n", getpi...
alessandro-antonelli/SOL-2016
Esercitazione 09/es2.c
<filename>Esercitazione 09/es2.c #include <stdio.h> #include <stdlib.h> #include <time.h> #include <pthread.h> #define ITERAZ 20 #define FILOSOFI 30 pthread_mutex_t semaforo[FILOSOFI]; void* filosofo(void* param) { int MyNumber = (int) param; printf("Filosofo %d si sveglia!\n", MyNumber); struct timespec *tempo ...
alessandro-antonelli/SOL-2016
Esercitazione 02/es3.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char* argv[]) { if(argc<3) { printf("Il programma deve essere chiamato con almeno due argomenti!\n"); return -1; } char* mode = "w"; if(argc>=4) { if(argv[3][0] == 'a') mode = "a"; } printf("Mode: %s\n", mode); FILE *in, *ou...
lalouai/PII_PIM_I_gonzalo_guerra
PII_PIM_l_gonzalo_guerra/Jugador.h
<reponame>lalouai/PII_PIM_I_gonzalo_guerra<gh_stars>0 #pragma once ref class Jugador { private: int puntos; bool jugando; int num_jug; public: Jugador(int nj) { num_jug = nj; puntos = 0; jugando = false; } int getNombre() { return num_jug; } void setPuntos(int p) { puntos += p; } int getPuntos(...
Abshir-ibrahim/pummy
main.c
<gh_stars>0 \******************************** project:Library managment system* Author:<NAME> * Date:July 2021 * Compiler:c99 * Licence:MIT * ********************************/ //name //member id //phone //status //is staff #include <stdio.h...
nishadh/SHDropdown
SHDropdown/SHDropdown.h
<filename>SHDropdown/SHDropdown.h // // SHDropdown.m // SHDropdown // // Created by <NAME> on 3/21/15. // Copyright (c) 2015 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @interface SHDropdownItem : NSObject - (id)init:(NSString *) title; - (id)init:(NSString *) title tag:(NSObject*) tag; @property (cop...
nishadh/SHDropdown
SHDropdownDemo/SHDropdownDemo/ViewController.h
<filename>SHDropdownDemo/SHDropdownDemo/ViewController.h<gh_stars>1-10 // // ViewController.h // SHDropdownDemo // // Created by <NAME> on 6/13/15. // Copyright (c) 2015 <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import "SHDropDown.h" @interface ViewController : UIViewController <SHDropDownDelegate>...
vikdevelop/duckduckgo-browser
src/WebView.h
<filename>src/WebView.h #pragma once #include <gtkmm/widget.h> #include <webkit2/webkit2.h> class WebView : public Gtk::Widget { public: WebView(); ~WebView() override = default; operator WebKitWebView*(); public: void loadUri(const Glib::ustring& uri); void refresh(); void goBack(); v...
vikdevelop/duckduckgo-browser
src/Browser.h
<gh_stars>0 #pragma once #include "Page.h" #include <gtkmm/window.h> #include <gtkmm/notebook.h> class Browser : public Gtk::Window { public: Browser(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& refBuilder); ~Browser() override = default; private: void addPage(const int pos); private: ...
vikdevelop/duckduckgo-browser
src/Page.h
#pragma once #include "WebView.h" #include <gtkmm/box.h> #include <gtkmm/builder.h> #include <gtkmm/button.h> #include <gtkmm/entry.h> class Page : public Gtk::Box { public: Page(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& refBuilder); ~Page() override = default; public: sigc::signal<void...
hesslink111/node-qt
deps/qt-4.8.0/darwin/x64/include/QtGui/qsoundqss_qws.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/painting/qblittable_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** G...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qfontenginedirectwrite_p.h
#include "../../../src/gui/text/qfontenginedirectwrite_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/painting/qgrayraster_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** G...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/tools/qregexp.h
<reponame>hesslink111/node-qt /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** *...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/kernel/qcoreapplication_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qwindowsysteminterface_qpa_p.h
#include "../../../src/gui/kernel/qwindowsysteminterface_qpa_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/tools/qsharedpointer.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtCore/private/qfilesystemmetadata_p.h
<filename>deps/qt-4.8.0/win32/ia32/include/QtCore/private/qfilesystemmetadata_p.h #include "../../../src/corelib/io/qfilesystemmetadata_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/io/qfilesystemiterator_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qunifiedtoolbarsurface_mac_p.h
<filename>deps/qt-4.8.0/win32/ia32/include/QtGui/private/qunifiedtoolbarsurface_mac_p.h #include "../../../src/gui/painting/qunifiedtoolbarsurface_mac_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/styles/qs60style_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** G...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtCore/private/qelfparser_p.h
#include "../../../src/corelib/plugin/qelfparser_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qdesktopwidget_qpa_p.h
<gh_stars>100-1000 #include "../../../src/gui/kernel/qdesktopwidget_qpa_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/kernel/qplatformwindow_qpa.h
<reponame>hesslink111/node-qt /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** **...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/s60framework/qs60keycapture_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the Symbian application wrapper of the Qt Toolkit. ** ** $QT_BEGIN_LICE...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/styles/qstylehelper_p.h
<filename>deps/qt-4.8.0/win32/ia32/src/gui/styles/qstylehelper_p.h<gh_stars>100-1000 /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/itemviews/qabstractitemview_p.h
<reponame>hesslink111/node-qt /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** **...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/animation/qabstractanimation.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/kernel/qkeymapper_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** G...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/thread/qthreadstorage.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/qplatformnativeinterface_qpa.h
<gh_stars>100-1000 #include "../../src/gui/kernel/qplatformnativeinterface_qpa.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtCore/private/qfilesystemiterator_p.h
<reponame>hesslink111/node-qt<gh_stars>100-1000 #include "../../../src/corelib/io/qfilesystemiterator_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/qplatformeventloopintegration_qpa.h
#include "../../src/gui/kernel/qplatformeventloopintegration_qpa.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qpixmap_blitter_p.h
#include "../../../src/gui/image/qpixmap_blitter_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/io/qdir_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qeventdispatcher_qpa_p.h
#include "../../../src/gui/kernel/qeventdispatcher_qpa_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/io/qfilesystemwatcher_symbian_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qplatformintegrationfactory_qpa_p.h
<filename>deps/qt-4.8.0/win32/ia32/include/QtGui/private/qplatformintegrationfactory_qpa_p.h<gh_stars>100-1000 #include "../../../src/gui/kernel/qplatformintegrationfactory_qpa_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/concurrent/qtconcurrentrun.h
<reponame>hesslink111/node-qt /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** *...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/text/qfontengine_x11_p.h
<filename>deps/qt-4.8.0/win32/ia32/src/gui/text/qfontengine_x11_p.h /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the Q...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/qplatformglcontext_qpa.h
#include "../../src/gui/kernel/qplatformglcontext_qpa.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/corelib/kernel/qmetaobject.h
<reponame>hesslink111/node-qt /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtCore module of the Qt Toolkit. ** *...
hesslink111/node-qt
deps/qt-4.8.0/darwin/x64/include/QtTest/qtestsystem.h
<gh_stars>100-1000 /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtTest module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE...
hesslink111/node-qt
deps/qt-4.8.0/darwin/x64/include/QtTest/qtesteventloop.h
<gh_stars>100-1000 /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtTest module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/qrawfont.h
#include "../../src/gui/text/qrawfont.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qmenubar_x11_p.h
<reponame>hesslink111/node-qt #include "../../../src/gui/widgets/qmenubar_x11_p.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/egl/qegl_p.h
<gh_stars>100-1000 /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/gui/painting/qgraphicssystem_runtime_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the plugins of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Le...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qflickgesture_p.h
<reponame>hesslink111/node-qt #include "../../../src/gui/util/qflickgesture_p.h"
hesslink111/node-qt
deps/qt-4.8.0/darwin/x64/include/QtGui/qwssocket_qws.h
<filename>deps/qt-4.8.0/darwin/x64/include/QtGui/qwssocket_qws.h /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui modu...
hesslink111/node-qt
src/QtGui/qwidget.h
<gh_stars>100-1000 // Copyright (c) 2012, <NAME> // All rights reserved. // // Author(s): <NAME> <<EMAIL>> // // You may use this file under the terms of the New BSD license as follows: // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following co...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtCore/qconfig-nacl.h
<gh_stars>100-1000 #include "../../src/corelib/global/qconfig-nacl.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/src/testlib/qabstracttestlogger_p.h
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtTest module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** ...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtCore/qscopedvaluerollback.h
<gh_stars>100-1000 #include "../../src/corelib/tools/qscopedvaluerollback.h"
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qs60keycapture_p.h
#include "../../../src/gui/s60framework/qs60keycapture_p.h"
hesslink111/node-qt
deps/qt-4.8.0/darwin/x64/include/QtGui/qscreenproxy_qws.h
<filename>deps/qt-4.8.0/darwin/x64/include/QtGui/qscreenproxy_qws.h /**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui m...
hesslink111/node-qt
deps/qt-4.8.0/win32/ia32/include/QtGui/private/qblittable_p.h
#include "../../../src/gui/painting/qblittable_p.h"