repo_name stringlengths 5 122 | path stringlengths 3 232 | text stringlengths 6 1.05M |
|---|---|---|
Nikhil-Xavier-DS/Self_Driving_Car----Sensor-Fusion-Localization---Control | Self_Driving_Car----PID-Controller/src/PID.h | #ifndef PID_H
#define PID_H
// Program by <NAME>
// Program written on 14th February 2018
class PID
{
public:
double p_error;
double i_error;
double d_error;
double Kp;
double Ki;
double Kd;
PID();
virtual ~PID();
void Init(double Kp, double Ki, double Kd);
void UpdateError(double cte);
double... |
JinmingDev/ScreenRecordTest | lupingdashi/app/src/main/cpp/include/config.h | <reponame>JinmingDev/ScreenRecordTest
//
// Created by Administrator on 2016/11/1.
//
#ifndef EASYPLAYER_CONFIG_H
#define EASYPLAYER_CONFIG_H
#ifndef FFMPEG_CONFIG_H
#define FFMPEG_CONFIG_H
#define FFMPEG_CONFIGURATION "--enable-gpl"
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
#define ARCH_ALPHA 0
#define ARCH_A... |
JinmingDev/ScreenRecordTest | lupingdashi/app/src/main/cpp/include/clock.h | ////
//// Created by Administrator on 2016/10/28.
////
//
//#ifndef EASYPLAYER_CLOCK_H
//#define EASYPLAYER_CLOCK_H
//
//#include <time.h>
//#include <mutex>
//
//class Clock {
//public:
// void start() {
// if (playing) return;
// struct timespec now;
// clock_gettime(CLOCK_MONOTONIC, &now);
//... |
JinmingDev/ScreenRecordTest | lupingdashi/app/src/main/cpp/include/opensles.h | //
// Created by Administrator on 2016/10/26.
//
#ifndef EASYPLAYER_OPENSLES_H
#define EASYPLAYER_OPENSLES_H
#include <SLES/OpenSLES.h>
#include <SLES/OpenSLES_Android.h>
#include <jni.h>
#include <pthread.h>
#include <assert.h>
void createAudioEngine();
void createBufferQueueAudioPlayer(int sampleRate, int cha... |
JinmingDev/ScreenRecordTest | lupingdashi/app/src/main/cpp/include/Logger.h | <filename>lupingdashi/app/src/main/cpp/include/Logger.h
/**************************************************************************
* 作 者: hxk
* 版 本: 1.0
* 生成日期: 2017-9-15
* 功能描述: jni 中 log打印
* LOGD("mBlockAlign: %u\n ",mBlockAlign);
* LOGE("%s", "获取视频信息失败");
* 其 他:
* 历 ... |
ezalenski/Pre-Fix-Boolean-Evaluator | src/boolean-eval.c | #include <stdio.h>
#include <stdlib.h>
int evalandprint() {
int a, b;
char c = getchar();
switch(c) {
case 't':
printf(" t ");
return 1;
case 'f':
printf(" f ");
return 0;
case '|':
printf(" ( ");
a = evalandprint();
printf(" | ");
b = evalandprint();
printf(" ) "); ... |
nilsalex/tensor-algebra | include/Generator.h | <gh_stars>0
#pragma once
#include <functional>
#include <memory>
#include "Expression.h"
#include "Indices.h"
#include "Tensor.h"
class Generator {
private:
size_t rank;
Indices indices;
Tensor eta;
Tensor epsilon;
std::vector<std::pair<Indices, bool>> symmetries;
std::vector<std::function<void (Express... |
nilsalex/tensor-algebra | include/Expression.h | #pragma once
#include <algorithm>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include <boost/serialization/unique_ptr.hpp>
#include <boost/serialization/utility.hpp>
#include <boost/serialization/vector.hpp>
#include "MonomialExpression.h"
#include "Rational.h"
#include "Scalar.h"
#include ... |
nilsalex/tensor-algebra | include/MyPermutation.h | <filename>include/MyPermutation.h
#pragma once
#include <string>
#include <vector>
#include "NextCombination.h"
constexpr size_t LARGE_ENOUGH_N = 1024;
class IndexPair {
private:
size_t a;
size_t b;
public:
IndexPair(size_t a, size_t b);
size_t first() const;
size_t second() const;
void Sort();
... |
nilsalex/tensor-algebra | include/TensorMonomial.h | #pragma once
#include <memory>
#include <utility>
#include <vector>
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/unique_ptr.hpp>
#include <boost/serialization/vector.hpp>
#include "Indices.h"
#include "Tensor.h"
class TensorMonomial : public Tensor {
private:
std::vector<std::uniq... |
nilsalex/tensor-algebra | include/MonomialExpression.h | #pragma once
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include <boost/serialization/unique_ptr.hpp>
#include <boost/serialization/utility.hpp>
#include <boost/serialization/vector.hpp>
#include "Indices.h"
#include "Rational.h"
#include "Tensor.h"
enum Status {ERROR, N... |
nilsalex/tensor-algebra | include/Scalar.h | <gh_stars>0
#pragma once
#include <algorithm>
#include <cassert>
#include <map>
#include <set>
#include <string>
#include <boost/serialization/set.hpp>
#include "Rational.h"
class Scalar {
private:
std::multiset<size_t> variables;
Rational coefficient;
friend class boost::serialization::access;
template ... |
nilsalex/tensor-algebra | include/Tensor.h | <filename>include/Tensor.h
#pragma once
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include <boost/serialization/string.hpp>
#include "Indices.h"
class Tensor {
private:
bool symmetric;
bool antisymmetric;
bool tracefree;
int sort_index;
friend class boost::serialization::a... |
nilsalex/tensor-algebra | include/ScalarSum.h | <gh_stars>0
#pragma once
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include <boost/serialization/unique_ptr.hpp>
#include <boost/serialization/vector.hpp>
#include "Scalar.h"
class ScalarSum {
private:
std::unique_ptr<std::vector<std::unique_ptr<Scalar>>> scalars;
fri... |
nilsalex/tensor-algebra | include/Indices.h | #pragma once
#include <map>
#include <set>
#include <string>
#include <vector>
#include <boost/serialization/vector.hpp>
const char alphabet[] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
enum class Index {a, b, c, d, e, f, g, ... |
nilsalex/tensor-algebra | include/Rational.h | <reponame>nilsalex/tensor-algebra<gh_stars>0
#pragma once
#include <utility>
#include <string>
#include <gmpxx.h>
#include <boost/serialization/utility.hpp>
typedef std::pair<int, unsigned int> Fraction;
class Rational {
private:
Fraction fraction;
friend class boost::serialization::access;
template <type... |
dniklaus/wiring-app-debug | AppDebug.h | <filename>AppDebug.h
/*
* AppDebug.h
*
* Created on: 24.03.2017
* Author: nid
*/
#ifndef LIB_APP_DEBUG_APPDEBUG_H_
#define LIB_APP_DEBUG_APPDEBUG_H_
void setupDebugEnv();
void dbgCliExecute();
void sayHello();
void unrecognized(const char *command);
#endif /* LIB_APP_DEBUG_APPDEBUG_H_ */
|
Ancool/headers | MobileTimer/WorldClockViewController.h | <gh_stars>1-10
// app
@interface WorldClockViewController : UITableViewController
@end
|
Ancool/headers | SpringBoard/SpringBoard.h | <gh_stars>1-10
@interface SpringBoard : UIApplication
- (void)applicationOpenURL:(NSURL *)url publicURLsOnly:(BOOL)publicOnly;
- (void)_relaunchSpringBoardNow;
@property (nonatomic, retain) UIWindow *window;
@end
|
Ancool/headers | Velox/VeloxFolderViewProtocol.h | @protocol VeloxFolderViewProtocol
+ (int)folderHeight;
- (id)initWithFrame:(CGRect)frame;
@optional
- (void)unregisterFromStuff;
@end
|
Ancool/headers | SpringBoard/SBBulletinListCell.h | <filename>SpringBoard/SBBulletinListCell.h
typedef enum {
SBBulletinListCellAccessoryStyleNone = 0,
SBBulletinListCellAccessoryStyleDot = 1
} SBBulletinListCellAccessoryStyle;
@interface SBBulletinListCell : UITableViewCell
@property SBBulletinListCellAccessoryStyle bulletinAccessoryStyle;
- (id)initWithLinenView:(... |
Ancool/headers | UIKit/UITableViewHeaderFooterView.h | @interface UITableViewHeaderFooterView : UITableViewCell
@end
|
Ancool/headers | MobilePhone/RecentsTableViewCell.h | #import "RecentCall.h"
@interface RecentsTableViewCell : UITableViewCell
-(RecentCall *)call;
@end
|
Ancool/headers | Preferences/PSViewController.h | <filename>Preferences/PSViewController.h<gh_stars>1-10
@interface PSViewController : UIViewController
- (id)initForContentSize:(CGSize)contentSize;
@end
|
Ancool/headers | SpringBoard/SBHUDController.h | #import "SBHUDView.h"
@interface SBHUDController : NSObject
+ (SBHUDController *)sharedHUDController;
- (void)presentHUDView:(SBHUDView *)hud autoDismissWithDelay:(double)delay;
@end
|
Ancool/headers | Tweetbot/PTHViewController.h | <reponame>Ancool/headers
@interface PTHViewController : UIViewController
@end
|
Ancool/headers | UIKit/UIImage+Private.h | <reponame>Ancool/headers
@interface UIImage (Private)
+ (UIImage *)kitImageNamed:(NSString *)name;
@end
|
Ancool/headers | UIKit/UIStatusBar.h | #import "UIStatusBarForegroundView.h"
@interface UIStatusBar : UIView {
UIStatusBarForegroundView *_foregroundView;
}
+ (int)defaultStatusBarStyle;
@end
|
Ancool/headers | SpringBoard/SBRotationLockHUDView.h | #import "SBHUDView.h"
@interface SBRotationLockHUDView : SBHUDView
@end
|
Ancool/headers | SpringBoard/SBApplicationIcon.h | #import "SBApplication.h"
typedef enum {
SBApplicationIconFormatSmall, // 29x29
SBApplicationIconFormatSpotlight, // 29x29 / 50x50
SBApplicationIconFormatDefault, // 59x62 / 74x78
SBApplicationIconFormatGameCenter, // 44x45 / 74x78
SBApplicationIconFormatDefaultGrayscale, // 59x62 / 74x78
SBApplicationIconFormat... |
Ancool/headers | SpringBoard/SBBulletinBannerView.h | <reponame>Ancool/headers
// 6.0+ only
#import "SBBannerView.h"
@interface SBBulletinBannerView : SBBannerView
@end
|
Ancool/headers | SpringBoard/SBBrightnessController.h | @interface SBBrightnessController : NSObject
+ (SBBrightnessController *)sharedBrightnessController;
- (void)adjustBacklightLevel:(BOOL)upOrDown;
@end
|
Ancool/headers | MobileTimer/WorldClockTableViewCell.h | // app
#import "WorldClockCity.h"
@interface WorldClockTableViewCell : UITableViewCell
@property (nonatomic, retain) WorldClockCity *city;
@end
|
Ancool/headers | MobileTimer/WorldClockPadViewController.h | // app
@interface WorldClockPadViewController : UIViewController
@end
|
Ancool/headers | Preferences/PSListController.h | #import "PSViewController.h"
@interface PSListController : PSViewController {
NSArray *_specifiers;
}
- (NSArray *)loadSpecifiersFromPlistName:(NSString *)name target:(id)target;
@end
|
Ancool/headers | MapKit/MKMapItem.h | #import "MKPlacemark.h"
@interface MKMapItem : NSObject
@property(retain) MKPlacemark *placemark;
@property BOOL isCurrentLocation;
+ (NSArray *)mapItemsFromURL:(NSURL *)url options:(id *)options;
@end
|
Ancool/headers | SpringBoard/SBHUDView.h | @interface SBHUDView : UIView
@property (nonatomic, retain) UIImage *image;
@end
|
Ancool/headers | ChatKit/CKMadridEntity.h | <gh_stars>1-10
#import "CKIMEntity.h"
// 5.x
@interface CKMadridEntity : CKIMEntity
@end
|
Ancool/headers | version.h | /**
* CoreFoundation Version Header
*
* by <NAME> <http://hbang.ws>
* WTFPL <http://wtfpl.net>
*
* 2.0 478.23
* 2.1 478.26
* 2.2 478.29
* 3.0 478.47
* 3.1 478.52
* 3.2 478.61
* 4.0 550.32
* 4.1 550.38
* 4.2 550.52
* 4.3 550.58
* 5.0 675.00
* 5.1 690.10
* 6.x 793.00
*/
/**
* iOS 2.0 - 4.2 are define... |
Ancool/headers | SpringBoard/VolumeControl.h | @interface VolumeControl : NSObject
- (void)increaseVolume;
- (void)decreaseVolume;
@end
|
Ancool/headers | Preferences/PSTableCell.h | <reponame>Ancool/headers
#import "PSSpecifier.h"
@interface PSTableCell : UITableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier specifier:(PSSpecifier *)specifier;
@property (nonatomic, retain) id target;
@property SEL action;
@end
|
Ancool/headers | Preferences/PSSliderTableCell.h | #import "PSControlTableCell.h"
@interface PSSliderTableCell : PSControlTableCell
@end
|
Ancool/headers | BulletinBoard/BBBulletin.h | @interface BBBulletin : NSObject
@property (retain) NSDictionary *context;
@property (copy) NSString *sectionID;
@property (copy) NSString *message;
@end
|
Ancool/headers | SpringBoard/SBApplication.h | @interface SBApplication : NSObject
@property (nonatomic, retain) NSString *bundleIdentifier;
@property (nonatomic, retain) NSString *sandboxPath;
@end
|
Ancool/headers | UIKit/UIWindow+Private.h | @interface UIWindow (Private)
+ (UIWindow *)keyWindow;
@end
|
Ancool/headers | ChatKit/CKIMEntity.h | <reponame>Ancool/headers<filename>ChatKit/CKIMEntity.h<gh_stars>1-10
#import "CKEntity.h"
@interface CKIMEntity : CKEntity
+ (id)copyEntityForAddressString:(NSString *)address;
@end
|
Ancool/headers | MobileTimer/WorldClockCollectionCell.h | // app
#import "WorldClockView.h"
#import <UIkit/UICollectionViewCell.h>
@interface WorldClockCollectionCell : UICollectionViewCell
@property (retain, nonatomic) WorldClockView *clockView;
@end
|
Ancool/headers | SpringBoard/SBBulletinBannerItem.h | <reponame>Ancool/headers<gh_stars>1-10
@interface SBBulletinBannerItem : NSObject
- (BBBulletin *)seedBulletin;
@end
|
Ancool/headers | Preferences/Preferences.h | <reponame>Ancool/headers
#import "PSListController.h"
|
Ancool/headers | AppSupport/CPDistributedMessagingCenter.h | @interface CPDistributedMessagingCenter : NSObject
+ (CPDistributedMessagingCenter *)centerNamed:(NSString *)name;
- (void)runServerOnCurrentThread;
- (void)registerForMessageName:(NSString *)messageName target:(id)target selector:(SEL)selector;
- (id)sendMessageAndReceiveReplyName:(NSString *)messageName userInfo:(id)... |
Ancool/headers | ChatKit/CKMadridService.h | #import "CKMadridEntity.h"
// 5.x
@interface CKMadridService : NSObject
- (CKMadridEntity *)copyEntityForAddressString:(NSString *)addressString;
@end
|
Ancool/headers | Preferences/PSSpecifier.h | @interface PSSpecifier : NSObject
- (id)properties;
@end
|
Ancool/headers | UIKit/UICollectionView.h | #ifndef __IPHONE_6_0
#import "UICollectionViewCell.h"
@interface UICollectionView : UIView
- (NSIndexPath *)indexPathForCell:(UICollectionViewCell *)cell;
@end
#endif
|
Ancool/headers | MobileTimer/WorldClockCity.h | // framework
@interface WorldClockCity : NSObject
@property (readonly) NSString *name;
@end
|
Ancool/headers | SpringBoard/SBBulletinBannerController.h | <reponame>Ancool/headers
@interface SBBulletinBannerController : NSObject
+ (instancetype)sharedInstance;
- (void)showTestBanner;
@end
|
Ancool/headers | SpringBoard/SBApplicationController.h | #import "SBApplication.h"
@interface SBApplicationController : NSObject
+ (SBApplicationController *)sharedInstance;
- (SBApplication *)applicationWithDisplayIdentifier:(NSString *)bundleIdentifier;
@end
|
Ancool/headers | IMFoundation/FZMessage.h | <gh_stars>1-10
@interface FZMessage : NSObject
@property unsigned long long flags;
@property (nonatomic, retain) NSString *handle;
@property (nonatomic, retain) NSString *sender;
@property (nonatomic, retain) NSDate *timeRead;
@end
|
Ancool/headers | ChatKit/CKEntity.h | @interface CKEntity : NSObject
@property (nonatomic, retain) NSString *name;
@end
|
Ancool/headers | MobileTimer/WorldClockPadContentView.h | // app
#import "WorldClockCollectionView.h"
@interface WorldClockPadContentView : UIView
@property (readonly, assign, nonatomic) WorldClockCollectionView *clocksView;
@end
|
Ancool/headers | SpringBoard/SBUserAgent.h | <filename>SpringBoard/SBUserAgent.h
@interface SBUserAgent : NSObject
+ (instancetype)sharedUserAgent;
- (NSString *)foregroundApplicationDisplayID;
@end
|
Ancool/headers | MobilePhone/RecentCall.h | @interface RecentCall : NSObject
- (int)type;
@end
|
Ancool/headers | SpringBoard/SBBannerView.h | <gh_stars>1-10
// 5.x only
@interface SBBannerView : UIView
@end
|
Ancool/headers | Preferences/PSControlTableCell.h | <filename>Preferences/PSControlTableCell.h
#import "PSTableCell.h"
@interface PSControlTableCell : PSTableCell
@property (nonatomic, retain) UIControl *control;
@end
|
Ancool/headers | UIKit/UIViewController+Private.h | @interface UIViewController (Private)
@property (readwrite) UIInterfaceOrientation interfaceOrientation;
@end
|
Ancool/headers | SpringBoard/SBStatusBarDataManager.h | <filename>SpringBoard/SBStatusBarDataManager.h
typedef struct {
char timeString[64];
} SBStatusBarData;
@interface SBStatusBarDataManager : NSObject
+ (instancetype)sharedDataManager;
- (void)_updateTimeString;
- (void)_dataChanged;
@end
|
Ancool/headers | SpringBoard/SBMediaController.h | #import "SBApplication.h"
@interface SBMediaController : NSObject
+ (instancetype)sharedInstance;
- (NSDictionary *)_nowPlayingInfo;
- (SBApplication *)nowPlayingApplication;
- (NSString *)nowPlayingTitle;
- (NSString *)nowPlayingArtist;
- (NSString *)nowPlayingAlbum;
@end
|
Ancool/headers | MapKit/MKPlacemark.h | #import <CoreLocation/CLPlacemark.h>
@interface MKPlacemark : CLPlacemark
@end
|
Ancool/headers | UIKit/UIActivityViewController.h | #ifndef __IPHONE_6_0
@interface UIActivityViewController : UIViewController
- (id)initWithActivityItems:(NSArray *)items applicationActivities:(NSArray *)applicationActivities;
@end
#endif
|
Ancool/headers | CoreLocation/CLPlacemark.h | <reponame>Ancool/headers
@interface CLPlacemark : NSObject
@property (readonly) NSDictionary *addressDictionary;
@end
|
Ancool/headers | UIKit/UIColor+Private.h | <filename>UIKit/UIColor+Private.h
@interface UIColor (Private)
+ (UIColor *)tableCellValue1BlueColor;
@end
|
Ancool/headers | UIKit/UIStatusBarForegroundView.h | <filename>UIKit/UIStatusBarForegroundView.h
@interface UIStatusBarForegroundView : UIView
@end
|
Ancool/headers | MobileTimer/WorldClockView.h | <filename>MobileTimer/WorldClockView.h
// app
#import "WorldClockCity.h"
@interface WorldClockView : UIView
@property (readonly, assign, nonatomic) UILabel *nameLabel;
@property (nonatomic, retain) WorldClockCity *city;
@end
|
Ancool/headers | UIKit/UICollectionViewCell.h | <reponame>Ancool/headers
#ifndef __IPHONE_6_0
@interface UICollectionViewCell : UIView
@end
#endif
|
Ancool/headers | UIKit/UIApplication+Private.h | <reponame>Ancool/headers<filename>UIKit/UIApplication+Private.h
#import "UIStatusBar.h"
@interface UIApplication (Private)
@property (nonatomic, retain) UIStatusBar *statusBar;
@end
|
Ancool/headers | MobileTimer/WorldClockCollectionView.h | <filename>MobileTimer/WorldClockCollectionView.h
// app
#import <UIKit/UICollectionView.h>
@interface WorldClockCollectionView : UICollectionView
@end
|
Ancool/headers | MobilePhone/RecentsTableViewCellContentView.h | <filename>MobilePhone/RecentsTableViewCellContentView.h
@interface RecentsTableViewCellContentView : UIView
@end
|
Ancool/headers | Tweetbot/PTHTweetbotStatus.h | <reponame>Ancool/headers
@interface PTHTweetbotStatus : NSObject
- (void)retweet:(id)sender;
@end
|
vsemionov/solar-space | src/VideoBase.h | <filename>src/VideoBase.h<gh_stars>0
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyr... |
vsemionov/solar-space | src/Text.h | <reponame>vsemionov/solar-space
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright ... |
vsemionov/solar-space | src/res/resource.h | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Solar Space.rc
//
#define IDS_DESC 1
#define IDD_PREVIEW 101
#define IDD_CONFIG 102
#define IDD_SHOWLOG 103
#define IDI_SOLSPACE ... |
vsemionov/solar-space | src/Settings.h | /*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of cond... |
vsemionov/solar-space | src/Defs.h | /*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of cond... |
vsemionov/solar-space | src/StarMap.h | /*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of cond... |
vsemionov/solar-space | src/Clock.h | <reponame>vsemionov/solar-space<filename>src/Clock.h
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain... |
vsemionov/solar-space | src/GamePlay.h | /*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of cond... |
vsemionov/solar-space | src/Loader.h | <reponame>vsemionov/solar-space<gh_stars>0
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above... |
vsemionov/solar-space | src/Resource.h | /*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of cond... |
vsemionov/solar-space | src/Info.h | <reponame>vsemionov/solar-space
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright ... |
vsemionov/solar-space | src/Camera.h | /*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of cond... |
vsemionov/solar-space | src/LensFlare.h | <reponame>vsemionov/solar-space
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright ... |
vsemionov/solar-space | src/Body.h | <reponame>vsemionov/solar-space
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright ... |
vsemionov/solar-space | src/Log.h | <reponame>vsemionov/solar-space
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright ... |
vsemionov/solar-space | src/Window.h | <reponame>vsemionov/solar-space
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright ... |
vsemionov/solar-space | src/NameTree.h | <gh_stars>0
/*
* Copyright (C) 2003-2011 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* ... |
kiding/DSCapture.framework | DSCapture/DSCapture/DSCaptureFullController.h | #import <Foundation/Foundation.h>
@interface DSCaptureFullController : NSObject
{
id callbackTarget;
SEL callbackSelector;
}
- (id) init;
- (void) captureWithTarget: (id) target
selector: (SEL) selector
useCG: (BOOL) cg;
@end
|
kiding/DSCapture.framework | DSCapture/DSCapture/DSCaptureSelectionController.h | #import "DSCaptureData.h"
@interface DSCaptureSelectionController : NSObject <NSWindowDelegate>
{
id callbackTarget;
SEL callbackSelector;
// for CoreGraphics
NSMutableArray *selectionWindowArray;
}
- (id) init;
- (void) captureWithTarget: (id) target
selector: (SEL) selector
... |
kiding/DSCapture.framework | DSCapture/DSCapture/DSCaptureSelectionWindow.h | #import "DSCaptureSelectionView.h"
@interface DSCaptureSelectionWindow : NSWindow
{
CGDirectDisplayID displayID;
NSRect displayRect;
NSPoint originPoint;
NSRect viewRect;
BOOL isSelectionDone;
CGRect selectionRect;
NSTrackingArea *trackingArea;
DSCaptureSelectionView *sel... |
kiding/DSCapture.framework | DSCapture/DSCapture/DSCaptureData.h | #import <Foundation/Foundation.h>
@interface DSCaptureData : NSObject
{
NSMutableArray *data;
NSMutableArray *image;
}
+ (id) data;
- (id) init;
- (void) addCaptureData: (NSData *) newData;
- (NSUInteger) count;
- (NSData *) dataAtIndex: (NSUInteger) index;
- (NSImage *) imageAtIndex: (NSUInteger) index;
... |
kiding/DSCapture.framework | DSCapture/DSCapture/DSCapture.h | <gh_stars>10-100
#import "DSCaptureData.h"
#import "DSCaptureFullController.h"
#import "DSCaptureSelectionController.h"
@interface DSCapture : NSObject
{
DSCaptureFullController *full;
DSCaptureSelectionController *selection;
}
+ (DSCapture *) sharedCapture;
- (DSCaptureFullController *) full;
- (DSCaptureSe... |
kiding/DSCapture.framework | DSCapture/DSCapture/DSCaptureSelectionView.h | #import <Cocoa/Cocoa.h>
@interface DSCaptureSelectionView : NSView
- (void)drawRect:(NSRect)dirtyRect;
@end
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.