repo_name stringlengths 5 122 | path stringlengths 3 232 | text stringlengths 6 1.05M |
|---|---|---|
tevelee/LTFramer | LTFramer/Core/Common/Public/LTFramerConfiguration.h | <gh_stars>1-10
//
// LTFramerConfiguration.h
// Pods
//
// Created by <NAME> on 2017. 02. 04..
//
//
#import <Foundation/Foundation.h>
@interface LTFramerConfiguration : NSObject
/**
* Used when layout needs to be flipped horizontally, eg. in Arabic and Hebrew standards
*/
@property (nonatomic, assign, getter =... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Protocols/LTFramerSizeFittableProtocol.h | //
// LTFramerSizeFittable.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
@protocol LTFramerSizeFittable <NSObject>
- (CGSize)sizeThatFits:(CGSize)size;
@end
|
tevelee/LTFramer | LTFramer/Convenience/Common/Public/LTFramer_Convenience.h | //
// LTFramer.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import "NSObject+LTFramerConvenience.h"
|
tevelee/LTFramer | LTFramer/Convenience/iOS/Public/LTFramerKit_Convenience_UIKit.h | //
// LTFramer.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import "LTFramer_Convenience.h"
#import "UIView+LTFramerConvenience.h"
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Properties/LTFramerPositionProperty.h | //
// LTFramerProperty.h
// Pods
//
// Created by <NAME> on 07/09/16.
//
//
#import "LTFramerProperty.h"
typedef NS_ENUM(NSUInteger, LTFramerPosition) {
LTFramerPositionExact,
LTFramerPositionAlignToLeading,
LTFramerPositionAlignToCenter,
LTFramerPositionAlignToTrailing
};
@interface LTFramerPosit... |
tevelee/LTFramer | LTFramer/Stack/Common/Public/LTFramerStackSubject.h | <reponame>tevelee/LTFramer<gh_stars>1-10
//
// LTFramerStackSubject.h
// Pods
//
// Created by <NAME> on 17/09/16.
//
//
#import "LTFramerFrameSettableProtocol.h"
#import "LTFramerSizeFittableProtocol.h"
#import "LTFramerStackElementProtocol.h"
typedef id<LTFramerFrameSettable, LTFramerStackElement, LTFramerSizeFi... |
tevelee/LTFramer | LTFramer/Stack/Common/Public/LTFramerStackAlignment.h | //
// LTFramerStackAlignment.h
// Pods
//
// Created by <NAME> on 17/09/16.
//
//
typedef NS_ENUM(NSUInteger, LTFramerStackAlignment) {
LTFramerAlignStretchToFill,
LTFramerAlignLeading,
LTFramerAlignTrailing,
LTFramerAlignCenter,
//LTFramerAlignBaseline is not yet implemented
};
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Protocols/LTFramerFrameGettableProtocol.h | <filename>LTFramer/Core/Common/Public/Protocols/LTFramerFrameGettableProtocol.h
//
// LTFramerFrameSettable.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
@protocol LTFramerFrameGettable <NSObject>
- (CGRect)frame;
@end
|
tevelee/LTFramer | LTFramer/Stack/iOS/Public/LTFramerKit_Stack_UIKit.h | //
// LTFramer.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import "LTFramerKit_Stack.h"
#import "UIView+LTFramerStack.h"
#import "LTFramerStackView.h"
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Protocols/Rules/LTFramerRelativeRuleProtocol.h | <reponame>tevelee/LTFramer<gh_stars>1-10
//
// LTFramerRelativeRuleProtocol.h
// Pods
//
// Created by <NAME> on 2016. 10. 11..
//
//
#import "LTFramerRulePriority.h"
#import "LTFramerSubject.h"
@protocol LTFramer;
@protocol LTFramerRelativeRule <NSObject>
@property (nonatomic, nonnull, readonly) id<LTFramer> th... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Types/LTFramerSubject.h | //
// LTFramerSubject.h
// Pods
//
// Created by <NAME> on 25/09/16.
//
//
#import "LTFramerFrameSettableProtocol.h"
typedef id<LTFramerFrameSettable> LTFramerSubject;
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Helpers/NSDictionary+LTFramer.h | <gh_stars>1-10
//
// NSDictionary+LTFramer.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
#import <Foundation/Foundation.h>
@interface NSDictionary (LTFramer)
- (NSDictionary*)skyFramer_map:(id(^)(id<NSObject> key, id object))block;
- (NSDictionary*)skyFramer_filter:(BOOL(^)(id<NSObject> key, id object))blo... |
tevelee/LTFramer | LTFramer/Stack/iOS/Public/LTFramerStackView.h | //
// LTFramerStackView.h
// Pods
//
// Created by <NAME> on 16/09/16.
//
//
#import "LTFramerStack.h"
@interface LTFramerStackView : UIView
@property (nonatomic, strong, readonly) LTFramerStack* stack;
@property (nonatomic, strong) LTFramerStackProperties* properties;
+ (instancetype)stackViewWithViews:(NSArray... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Enumerations/LTFramerDirection.h | <filename>LTFramer/Core/Common/Public/Enumerations/LTFramerDirection.h
//
// LTFramerDirection.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
typedef NS_ENUM(NSUInteger, LTFramerDirection) {
LTFramerDirectionHorizontal,
LTFramerDirectionVertical
};
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Properties/LTFramerPaddingProperty.h | <gh_stars>1-10
//
// LTFramerProperty.h
// Pods
//
// Created by <NAME> on 07/09/16.
//
//
#import "LTFramerProperty.h"
typedef NS_ENUM(NSUInteger, LTFramerPadding) {
LTFramerPaddingLeading,
LTFramerPaddingTrailing
};
@interface LTFramerPaddingProperty : LTFramerProperty
@property (nonatomic, assign) LTF... |
tevelee/LTFramer | LTFramer/Stack/Common/Public/LTFramerStackElementProperties.h | //
// LTFramerVirtualBox.h
// Pods
//
// Created by <NAME> on 08/09/16.
//
//
#import <Foundation/Foundation.h>
typedef NS_ENUM(NSUInteger, LTFramerIndividualAlignment) {
LTFramerIndividualAlignmentInherited,
LTFramerIndividualAlignmentStretchToFill,
LTFramerIndividualAlignmentLeading,
LTFramerIndi... |
tevelee/LTFramer | LTFramer/Core/Common/Public/LTFramer.h | //
// LTFramer.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import <Foundation/Foundation.h>
#import "LTFramerRule.h"
#import "LTFramerFrameSettableProtocol.h"
#import "LTFramerProtocol.h"
@interface LTFramer : NSObject <LTFramer>
+ (_Nonnull instancetype)framerWithSubject:(_Nonnull LTFramerSubject)subje... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Rules/LTFramerRelativeRule.h | //
// LTFramerRelativeRule.h
// Pods
//
// Created by <NAME> on 06/09/16.
//
//
#import "LTFramerRule.h"
#import "LTFramerSubject.h"
#import "LTFramerProtocol.h"
#import "LTFramerRelativeRuleProtocol.h"
typedef NS_ENUM(NSUInteger, LTFramerRelation) {
LTFramerRelationNone,
LTFramerRelationEquality,
LTFr... |
tevelee/LTFramer | LTFramer/Convenience/Common/Public/CGRect+LTFramer.h | //
// CGRect+LTFramer.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
@import Foundation;
FOUNDATION_EXTERN CGRect CGRectCreate(CGPoint origin, CGSize size);
FOUNDATION_EXTERN CGRect CGRectIntegralMake(CGFloat x, CGFloat y, CGFloat width, CGFloat height);
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Rules/LTFramerRule.h | //
// LTFramerRule.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import <Foundation/Foundation.h>
#import "LTFramerSizeProperty.h"
#import "LTFramerPaddingProperty.h"
#import "LTFramerPositionProperty.h"
@interface LTFramerRule : NSObject <NSCopying>
@property (nonatomic, strong) LTFramerProperty* propert... |
tevelee/LTFramer | LTFramer/Convenience/Common/Public/CGPoint+LTFramer.h | <reponame>tevelee/LTFramer
//
// CGSize+LTFramer.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
@import Foundation;
FOUNDATION_EXTERN CGPoint CGPointCeil(CGPoint point);
FOUNDATION_EXTERN CGPoint CGPointCeilMake(CGFloat x, CGFloat y);
FOUNDATION_EXTERN CGPoint CGPointFloor(CGPoint point);
FOUNDATION_EXTERN ... |
tevelee/LTFramer | LTFramer/Convenience/Common/Public/CGSize+LTFramer.h | //
// CGSize+LTFramer.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
@import Foundation;
#undef CGSizeInfinite
#define CGSizeInfinite CGSizeMake(CGFLOAT_MAX, CGFLOAT_MAX)
FOUNDATION_EXTERN CGSize CGSizeCeil(CGSize size);
FOUNDATION_EXTERN CGSize CGSizeCeilMake(CGFloat width, CGFloat height);
FOUNDATION_EXT... |
tevelee/LTFramer | LTFramer/Stack/iOS/Public/UIView+LTFramerStack.h | //
// UIView+LTFramer_Stack.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
#import "LTFramerStackElementProtocol.h"
@interface UIView (LTFramerStack) <LTFramerStackElement>
@end
|
tevelee/LTFramer | LTFramer/Core/iOS/Public/LTFramer+UIKit.h | //
// LTFramer+UIView.h
// Pods
//
// Created by <NAME> on 25/09/16.
//
//
#import "LTFramer.h"
@interface LTFramer (UIKit)
+ (instancetype)framerWithView:(UIView*)view;
@end
|
tevelee/LTFramer | LTFramer/Stack/Common/Public/Protocols/LTFramerStackElementProtocol.h | //
// LTFramerStackElementPropertiesProtocol.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
#import "LTFramerStackElementProperties.h"
@protocol LTFramerStackElement <NSObject>
@property (nonatomic, strong) LTFramerStackElementProperties* stackProperties;
@end
|
tevelee/LTFramer | LTFramer/Stack/Common/Public/LTFramerStack.h | //
// LTFramerVirtualBox.h
// Pods
//
// Created by <NAME> on 08/09/16.
//
//
#import "LTFramerStackElementProperties.h"
#import "LTFramerStackProperties.h"
#import "LTFramerStackSubject.h"
@interface LTFramerStack : NSObject <LTFramerSizeFittable>
@property (nonatomic, strong) NSArray<LTFramerStackSubject>* subj... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Types/LTFramerRulePriority.h | //
// LTFramerRulePriority.h
// Pods
//
// Created by <NAME> on 2016. 10. 11..
//
//
typedef NSInteger LTFramerRulePriority;
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Rules/LTFramerAbsoluteRule.h | <filename>LTFramer/Core/Common/Public/Rules/LTFramerAbsoluteRule.h
//
// LTFramerAbsoluteRule.h
// Pods
//
// Created by <NAME> on 2016. 10. 10..
//
//
#import "LTFramerRule.h"
#import "LTFramerProtocol.h"
#import "LTFramerAbsoluteRuleProtocol.h"
@class LTFramerAbsoluteRule;
@protocol LTFramerAbsoluteRuleDelegate... |
tevelee/LTFramer | LTFramer/Core/iOS/Public/UIView+LTFramer.h | <reponame>tevelee/LTFramer<filename>LTFramer/Core/iOS/Public/UIView+LTFramer.h
//
// UIView+LTFramer.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import <UIKit/UIKit.h>
#import "LTFramer.h"
#import "LTFramerFrameInstallableProtocol.h"
#import "LTFramerSizeFittableProtocol.h"
@interface UIView (LTFramer_Bl... |
tevelee/LTFramer | Example/LTFramer/LTFramerAppDelegate.h | <filename>Example/LTFramer/LTFramerAppDelegate.h
//
// LTFramerAppDelegate.h
// LTFramer
//
// Created by <NAME> on 08/21/2016.
// Copyright (c) 2016 <NAME>. All rights reserved.
//
@import UIKit;
@interface LTFramerAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;... |
tevelee/LTFramer | LTFramer/Convenience/iOS/Public/UIEdgeInsets+LTFramer.h | //
// CGAffineTransform+LTFramer.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
@import UIKit;
FOUNDATION_EXTERN UIEdgeInsets UIEdgeInsetsEqual(CGFloat inset);
|
tevelee/LTFramer | LTFramer/Core/Common/Public/LTFramerVirtualBox.h | //
// LTFramerVirtualBox.h
// Pods
//
// Created by <NAME> on 08/09/16.
//
//
#import "UIView+LTFramer.h"
typedef void(^LTFramerLayoutBlock)(CGRect frame);
@interface LTFramerVirtualBox : NSObject <LTFramerFrameSettable>
@property (nonatomic, assign) CGRect frame;
@property (nonatomic, copy) LTFramerLayoutBlock ... |
tevelee/LTFramer | LTFramer/Stack/Common/Private/LTFramerStackElement.h | <gh_stars>1-10
//
// LTFramerStackElement.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
#import "LTFramerStackElementProperties.h"
#import "LTFramerSizeFittableProtocol.h"
#import "LTFramerStackSubject.h"
#import "LTFramerStackAlignment.h"
struct LTFramerRange {
double min;
double max;
};
typedef st... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Helpers/NSArray+LTFramer.h | <filename>LTFramer/Core/Common/Public/Helpers/NSArray+LTFramer.h
//
// NSArray+LTFramer.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import <Foundation/Foundation.h>
@interface NSArray (LTFramerFunctional)
- (NSArray*)skyFramer_map:(id(^)(id object))block;
- (NSArray*)skyFramer_filter:(BOOL(^)(id object)... |
tevelee/LTFramer | LTFramer/Convenience/Common/Public/CGAffineTransform+LTFramer.h | <filename>LTFramer/Convenience/Common/Public/CGAffineTransform+LTFramer.h
//
// CGAffineTransform+LTFramer.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
@import Foundation;
FOUNDATION_EXTERN CGAffineTransform CGAffineTransformFromFrameToFrame(CGRect source, CGRect target);
|
tevelee/LTFramer | LTFramer/Core/Common/Public/Protocols/LTFramerFrameInstallableProtocol.h | //
// LTFramerFrameInstallable.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
#import "LTFramer.h"
typedef void(^LTFramerBlock)(LTFramer* framer);
@protocol LTFramerFrameInstallable <NSObject>
- (void)installFrame:(LTFramerBlock)block;
- (void)installFrame:(LTFramerBlock)block ignoreTransform:(BOOL)ignoreT... |
tevelee/LTFramer | LTFramer/Convenience/iOS/Public/UIView+LTFramerConvenience.h | //
// UIView+LTFramer.h
// Pods
//
// Created by <NAME> on 21/08/16.
//
//
#import <UIKit/UIKit.h>
@interface UIView (LTFramer_Convenience)
- (void)addTo:(UIView*)view;
- (CGFloat)skyFramer_minX:(BOOL)ignoreTransform;
- (CGFloat)skyFramer_minY:(BOOL)ignoreTransform;
- (CGFloat)skyFramer_midX:(BOOL)ignoreTransfo... |
tevelee/LTFramer | LTFramer/Stack/Common/Public/LTFramerStackProperties.h | //
// LTFramerStackProperties.h
// Pods
//
// Created by <NAME> on 16/09/16.
//
//
#import <Foundation/Foundation.h>
#import "LTFramerDirection.h"
#import "LTFramerStackAlignment.h"
typedef NS_ENUM(NSUInteger, LTFramerJustification) {
LTFramerJustifyLeading,
LTFramerJustifyTrailing,
LTFramerJustifyCent... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Protocols/Rules/LTFramerAbsoluteRuleProtocol.h | //
// LTFramerAbsoluteRuleProtocol.h
// Pods
//
// Created by <NAME> on 2016. 10. 11..
//
//
#import "LTFramerRulePriority.h"
@protocol LTFramer;
@protocol LTFramerAbsoluteRule <NSObject>
@property (nonatomic, nonnull, readonly) id<LTFramer> then;
@property (nonatomic, nonnull, readonly) id<LTFramerAbsoluteRule... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Properties/LTFramerProperty.h | <reponame>tevelee/LTFramer
//
// LTFramerProperty.h
// Pods
//
// Created by <NAME> on 07/09/16.
//
//
#import "LTFramerDirection.h"
typedef NS_ENUM(NSUInteger, LTFramerConstraint) {
LTFramerConstraintPosition,
LTFramerConstraintSize,
LTFramerConstraintPadding
};
@interface LTFramerProperty : NSObject... |
tevelee/LTFramer | LTFramer/Core/Common/Public/Protocols/LTFramerFrameSettableProtocol.h | <reponame>tevelee/LTFramer<gh_stars>1-10
//
// LTFramerFrameSettable.h
// Pods
//
// Created by <NAME> on 15/09/16.
//
//
#import "LTFramerFrameGettableProtocol.h"
@protocol LTFramerFrameSettable <LTFramerFrameGettable>
- (void)setFrame:(CGRect)frame;
@end
|
HectorIdme/Cubo_Rubik | rubikCube.h | <gh_stars>0
#ifndef RUBIKCUBE_H
#define RUBIKCUBE_H
#include <glad/glad.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <glm/gtx/rotate_vector.hpp>
#include <glm/gtx/string_cast.hpp>
#include "shader.h"
#include "std_image.h"
#include "texture.h"
#include <s... |
HectorIdme/Cubo_Rubik | Rubik-solver/include/defineRubik.h | <gh_stars>1-10
/**
* @file defineRubik.h
* @brief Definition of a rubik's cube
*
* @author <NAME>
* @date 20/05/2016
*
*/
#ifndef def_rubik_h
#define def_rubik_h
#include <iostream>
#include <fstream>
#include <vector>
using namespace std;
/**
* @struct Center
* @brief Central sticker of a face.
*
... |
HectorIdme/Cubo_Rubik | texture.h | #ifndef TEXTURE_H
#define TEXTURE_H
#include <glad/glad.h>
#include <glm/glm.hpp>
#include "std_image.h"
#include <string>
#include <fstream>
#include <sstream>
#include <iostream>
class Texture{
public:
int width, height, nrChannels;
unsigned char* data;
Texture::Texture(const char* texturePat... |
nocsonic/cordova-plugin-nocsonicmedia-ios | src/ios/CDVAudions.h | <filename>src/ios/CDVAudions.h
#import <Foundation/Foundation.h>
#import <AudioToolbox/AudioServices.h>
#import <AVFoundation/AVFoundation.h>
#import <Cordova/CDVPlugin.h>
enum CDVNocSonicMixerError {
MEDIA_ERR_ABORTED = 1,
MEDIA_ERR_NETWORK = 2,
MEDIA_ERR_DECODE = 3,
MEDIA_ERR_NONE_SUPPORTED = 4
};
... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Construction/ConstructionManager.h | // No copyright - copy as you please
#pragma once
#include <GameFramework/Actor.h>
#include "ConstructionManager.generated.h"
UCLASS()
class TD2020_API AConstructionManager : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
AConstructionManager();
protected:
... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enviroment/DayNightCycle.h | // No copyright - copy as you please
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "DayNightCycle.generated.h"
class ADirectionalLight;
class AMySkySphere;
class AMyGameState;
class USceneComponent;
class UStaticMeshComponent;
class UMaterial;
class UCurveLinearColor;
UCLASS()
class... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Libraries/FunctionLibrary.h | // No copyright - copy as you please
#pragma once
#include <Kismet/BlueprintFunctionLibrary.h>
#include "FunctionLibrary.generated.h"
class ACameraPawnController;
class APlayerController;
class ACameraPawn;
class UBoxComponent;
class UStaticMeshComponent;
class USceneComponent;
UCLASS()
class TD2020_API UFunctionLi... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/EBuildingType.h | <filename>TD2020/Source/TD2020/Public/TD2020/Enums/EBuildingType.h<gh_stars>1-10
// No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "EBuildingType.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EBuildingType_Enum : uint8
{
Reside... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/EResourcesRow.h | <reponame>JernejHabjan/TrumpDefense2020
// No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "EResourcesRow.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EResourcesRow_Enum : uint8
{
None UMETA(DisplayName = "None"),
Granite UM... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/ELocationType.h | // No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "ELocationType.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class ELocationType_Enum : uint8
{
NoneSelected UMETA(DisplayName = "NoneSelected"),
Home UMETA(DisplayName = "Home"),
... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/ENPCNameFemale.h | <filename>TD2020/Source/TD2020/Public/TD2020/Enums/ENPCNameFemale.h<gh_stars>1-10
// No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "ENPCNameFemale.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class ENPCNameFemale_Enum : uint8
{
Ana ... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/EMonthNames.h | // No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "EMonthNames.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EMonthNames_Enum : uint8
{
January UMETA(DisplayName = "January"),
February UMETA(DisplayName = "February"),
Ma... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enviroment/Sky/MySkySphere.h | <reponame>JernejHabjan/TrumpDefense2020<filename>TD2020/Source/TD2020/Public/TD2020/Enviroment/Sky/MySkySphere.h
// No copyright - copy as you please
#pragma once
#include "GameFramework/Actor.h"
#include "MySkySphere.generated.h"
class USceneComponent;
class UStaticMeshComponent;
struct FLinearColor;
class UMaterial... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/EProximityType.h | <filename>TD2020/Source/TD2020/Public/TD2020/Enums/EProximityType.h<gh_stars>1-10
// No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "EProximityType.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EProximityType_Enum : uint8
{
None... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/RTS/TD2020AttackableComponent.h | <filename>TD2020/Source/TD2020/Public/RTS/TD2020AttackableComponent.h<gh_stars>1-10
#pragma once
#include <Components/ActorComponent.h>
#include "TD2020AttackableComponent.generated.h"
/**
* Allows choosing the actor as target for an attack order.
*/
UCLASS(meta = (BlueprintSpawnableComponent))
class TD2020_API UTD2020... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/EAIState.h | // No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "EAIState.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EAIState_Enum : uint8
{
Homeless UMETA(DisplayName = "Homeless"),
Working UMETA(DisplayName = "Working"),
Sleepin... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/ENPCSex.h | // No copyright - copy as you please
#pragma once
#include <CoreMinimal.h>
#include <Engine/UserDefinedEnum.h>
#include "ENPCSex.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class ENPCSex_Enum : uint8
{
Male UMETA(DisplayName = "Male"),
Female UMETA(DisplayName = "Female")... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/ENPCNameMale.h | // No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "ENPCNameMale.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class ENPCNameMale_Enum : uint8
{
Janez UMETA(DisplayName = "Janez"),
Gasper UMETA(DisplayName = "Gasper"),
Miha UME... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/EGameSpeed.h | // No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "EGameSpeed.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EGameSpeed_Enum : uint8
{
Speed_0 UMETA(DisplayName = "Speed_0"),
Speed_1 UMETA(DisplayName = "Speed_1"),
Speed_... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Enums/EOccupationType.h | <reponame>JernejHabjan/TrumpDefense2020
// No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedEnum.h>
#include "EOccupationType.generated.h"
UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EOccupationType_Enum : uint8
{
Unemployment UMETA(DisplayName = "Unemploym... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/TD2020.h | <reponame>JernejHabjan/TrumpDefense2020<filename>TD2020/Source/TD2020/TD2020.h
#pragma once
#include "Logging/LogMacros.h"
/** when you modify this, please note that this information can be saved with instances
* also DefaultEngine.ini [/Script/Engine.CollisionProfile] should match with this list **/
#define COLLISIO... |
JernejHabjan/TrumpDefense2020 | TD2020/Source/TD2020/Public/TD2020/Structs/Resources_STRUCT.h | <gh_stars>1-10
// No copyright - copy as you please
#pragma once
#include <Engine/UserDefinedStruct.h>
#include "TD2020/Enums/EProximityType.h"
#include <Engine/DataTable.h>
#include "Resources_STRUCT.generated.h"
class UTexture2D;
class UStaticMesh;
USTRUCT(BlueprintType)
struct FResources_Struct : public FTableRow... |
Rogaven/ODX.Networking | deps/ODX.Core/ODStringify.h | // ODStringify.h
//
// Copyright (c) 2009-2015 <NAME>, AJR
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, ... |
Rogaven/ODX.Networking | deps/ODX.Core/ODDispatch.h | <reponame>Rogaven/ODX.Networking
// ODDispatch.h
//
// Copyright (c) 2009-2015 <NAME>, AJR
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitat... |
kitterion/flax | src/lua_test_string.h | #ifndef SRC_LUA_TEST_STRING_H_
#define SRC_LUA_TEST_STRING_H_
#include <string>
#include <vector>
class LuaTestString {
public:
class TechnologyProxy {
public:
TechnologyProxy(const std::string& name) : name_(name) {}
TechnologyProxy& UnlockRecipe(const std::string& recipe_name) {
unlocked_recipes... |
kitterion/flax | src/lua_data.h | #ifndef SRC_LUA_DATA_H_
#define SRC_LUA_DATA_H_
#include <iostream>
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "sol.hpp"
std::string ToString(const sol::object& obj);
struct Ingredient {
std::string item;
int amount;
};
struct Recipe {
std::vector<Ingredient> inpu... |
rtokarev/m3ufs2 | m3ufs2.h | <filename>m3ufs2.h<gh_stars>1-10
#ifndef _M3UFS2_H_
#define _M3UFS2_H_
/*
* Copyright (c) 2011 <NAME> <<EMAIL>>
* 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 sou... |
rtokarev/m3ufs2 | m3ufs2.c | /*
* Copyright (c) 2011 <NAME> <<EMAIL>>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of... |
apfeltee/optparse | test.c | <reponame>apfeltee/optparse<filename>test.c
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "optparse.h"
/*
./a.out foo bar -I/usr/include quux --load=foo.dll -Ic:/blah/include dorks --load
include: </usr/include>
loading <foo.dll>
include: <c:/blah/include>
error: --load needs an argument
posit... |
apfeltee/optparse | optparse.h |
#pragma once
/*
* copyright 2021-.... github.com/apfeltee
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modi... |
Hurtubise-Epic/FaceflowApp | Plugins/FaceflowLive/Source/FaceflowLive/Public/FaceflowLiveSource.h | <reponame>Hurtubise-Epic/FaceflowApp
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ILiveLinkSource.h"
#include "HAL/Runnable.h"
#include "HAL/ThreadSafeBool.h"
#include "IMessageContext.h"
#include "Interfaces/IPv4/IPv4Endpoint.h"
class FRunnableThread;
class FSocket;
class ILiv... |
Hurtubise-Epic/FaceflowApp | Plugins/FaceflowLive/Source/FaceflowLive/Private/SFaceflowLiveSourceFactory.h | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Widgets/SCompoundWidget.h"
#include "Input/Reply.h"
#include "Types/SlateEnums.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
class SEditableTextBox;
class SFaceflowLiveSourceFactory : public SCompoundWidget
{
public:
DECLARE_DEL... |
clayne/RGB2Y | RGB2Y.h | <reponame>clayne/RGB2Y
/*******************************************************************
* RGB2Y.h
* RGB2Y
*
* Author: <NAME>
* <EMAIL>
* https://github.com/komrad36
*
* Last updated Sep 29, 2018
*******************************************************************/
//
// Fastest CPU (AVX/SSE) implement... |
haominhe/Graduate | CS510 Operating System Foundations/P2/Main.c | code Main
-- OS Class: Project 2
--
-- <<NAME>>
--
-- This package contains the following:
-- SimpleThreadExample
-- MoreThreadExamples
-- ProducerConsumer
-- TestMutex
-- Dining Philospohers
-- References:
-- https://www.justsoftwaresolutions.co.uk/threading/locks-mutexe... |
haominhe/Graduate | CS510 Operating System Foundations/P3/Main.h | <reponame>haominhe/Graduate
header Main
uses System, Thread, Synch
functions
main ()
endHeader
|
haominhe/Graduate | CS510 Operating System Foundations/P2/Synch.h | <filename>CS510 Operating System Foundations/P2/Synch.h<gh_stars>0
header Synch
-- OS Class: Project 2
--
-- <<NAME>>
uses Thread
class Semaphore
superclass Object
fields
count: int
waitingThreads: List [Thread]
methods
Init (initialCount: int)
Down ()
Up ()
endClass
... |
haominhe/Graduate | CS510 Operating System Foundations/P1/HelloWorld.h | <reponame>haominhe/Graduate
header Hello
uses System
functions
main ()
endHeader
|
haominhe/Graduate | CS510 Operating System Foundations/P4/Kernel.c | code Kernel
-- <NAME>
-- References:
-- http://web.cecs.pdx.edu/~harry/Blitz/InstructorInfo/IdeasOnHoareTask.pdf
-- http://www.cs.utexas.edu/users/lorenzo/corsi/cs372h/07S/notes/Lecture12.pdf
-- https://cseweb.ucsd.edu/classes/sp16/cse120-a/applications/ln/lecture9.html
-- http://pages.cs.wisc.edu/~remz... |
haominhe/Graduate | CS510 Operating System Foundations/P5/Kernel.c | code Kernel
-- <NAME>
-- References:
-- http://web.cecs.pdx.edu/~harry/Blitz/InstructorInfo/IdeasOnHoareTask.pdf
-- http://www.cs.utexas.edu/users/lorenzo/corsi/cs372h/07S/notes/Lecture12.pdf
-- https://cseweb.ucsd.edu/classes/sp16/cse120-a/applications/ln/lecture9.html
-- http://pages.cs.wisc.edu/~remz... |
haominhe/Graduate | CS510 Operating System Foundations/P1/HelloWorld.c | code Hello
-- This is the "hello world" program, for use in Project 1.
function main ()
print ("Hello, world...\n")
foo (10)
endFunction
function foo (x: int)
bar (x+1)
endFunction
function bar (a: int)
var b: int
b = a + 1
print ("The value of b is ")
printIn... |
haominhe/Graduate | CS510 Operating System Foundations/P3/Main.c | <filename>CS510 Operating System Foundations/P3/Main.c<gh_stars>0
code Main
-- OS Class: Project 3
--
-- <NAME>
--
--
--
-- References:
-- Tanenbaum textbook, SleepingBarberProblem.pdf
-- http://users.dickinson.edu/~braught/courses/cs354s00/classes/code/SleepBarber.src.html
-- https://courses.cs.w... |
MobileChromeApps/cordova-plugin-chrome-apps-bluetooth | src/ios/ChromeBluetooth.h | @interface ChromeBluetooth : CDVPlugin {
}
#pragma mark chrome.bluetoothLowEnergy interface
// chrome.bluetooth and chrome.bluetoothLowEnergy uses same file because connect, and disconnect
// a deivce requires the same instance of CBCentralManager that found the device.
- (void)connect:(CDVInvokedUrlCommand*)com... |
alexw91/aws-c-compression | tests/fuzz/transitive.c | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/compression/huffman.h>
#include <aws/compression/private/huffman_testing.h>
#include <aws/testing/aws_test_harness.h>
struct aws_huffman_symbol_coder *test_get_coder(void);
int LLVMFuz... |
alexw91/aws-c-compression | tests/library_test.c | <filename>tests/library_test.c
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/compression/compression.h>
#include <aws/testing/aws_test_harness.h>
AWS_TEST_CASE(library_init, s_test_library_init)
static int s_test_library_init(struct... |
alexw91/aws-c-compression | source/compression.c | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/compression/compression.h>
#define DEFINE_ERROR_INFO(CODE, STR) \
[(CODE)-AWS_ERROR_ENUM_BEGIN_RANGE... |
alexw91/aws-c-compression | tests/fuzz/decode.c | <gh_stars>10-100
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/compression/huffman.h>
#include <aws/compression/private/huffman_testing.h>
#include <aws/testing/aws_test_harness.h>
struct aws_huffman_symbol_coder *test_get_coder(vo... |
alexw91/aws-c-compression | source/huffman_testing.c | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
/**
* See aws/testing/compression/huffman.h for docs.
*/
#define AWS_UNSTABLE_TESTING_API
#include <aws/compression/private/huffman_testing.h>
#include <aws/common/byte_buf.h>
#include <aws/common/c... |
alexw91/aws-c-compression | tests/huffman_test.c | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/compression/private/huffman_testing.h>
#include <aws/testing/aws_test_harness.h>
#include <aws/compression/huffman.h>
/* Exported by generated file */
struct aws_huffman_symbol_coder *t... |
alexw91/aws-c-compression | source/huffman_generator/generator.c | <filename>source/huffman_generator/generator.c
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <assert.h> /* NOLINT(fuchsia-restrict-system-includes) */
#include <aws/common/file.h>
#include <ctype.h>
#include <stdint.h> /* NOLINT(fuchsia-r... |
alexw91/aws-c-compression | tests/fuzz/transitive_chunked.c | <gh_stars>10-100
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/compression/huffman.h>
#include <aws/compression/private/huffman_testing.h>
#include <aws/testing/aws_test_harness.h>
struct aws_huffman_symbol_coder *test_get_coder(vo... |
lst60916/Position_Based_Dynamics | PositionBasedDynamics/PositionBasedElasticRods.h | #ifndef POSITION_BASED_ELASTIC_RODS_H
#define POSITION_BASED_ELASTIC_RODS_H
#include <Eigen/Dense>
#include "Common/Common.h"
// ------------------------------------------------------------------------------------
namespace PBD
{
// Implementation of "Position Based Elastic Rods" paper
// (http://www.nobuyuki-umeta... |
lst60916/Position_Based_Dynamics | Demos/Simulation/SimulationModel.h | <filename>Demos/Simulation/SimulationModel.h
#ifndef __SIMULATIONMODEL_H__
#define __SIMULATIONMODEL_H__
#include "Common/Common.h"
#include <vector>
#include "Demos/Simulation/RigidBody.h"
#include "Demos/Simulation/ParticleData.h"
#include "TriangleModel.h"
#include "TetModel.h"
#include "Demos/Utils/ObjectArray.h"
... |
HelpGiveThanks/BudgetPlanner | scripts/CloseWindowHaltScript.c | CloseWindowHaltScript
Close Window [ Current Window ]
Halt Script
February 6, 平成26 9:30:18 Budget Planner.fp7 - CloseWindowHaltScript -1- |
HelpGiveThanks/BudgetPlanner | scripts/deleteIncome.c | deleteIncome
Set Variable [ $delete; Value:in::_Lin ]
Go to Field [ in::date ]
Scroll Window
[ To Selection ]
Go to Field [ ]
Refresh Window
Show Custom Dialog [ Message: "delete current record?"; Buttons: “cancel”, “delete” ]
If [ Get (LastMessageChoice) = 1 ]
Set Variable [ $delete ]
Refresh Window
Exit Script [ ]
En... |
HelpGiveThanks/BudgetPlanner | scripts/updateIncomeHeaderCalc.c | updateIncomeHeaderCalc
If [ Get (FoundCount) = 0 ]
New Record/Request
Set Variable [ $delete; Value:1 ]
End If
If [ out::UpdateCalcField = "" ]
Set Field [ in::UpdateCalcField; "t" ]
Else
Set Field [ in::UpdateCalcField; "" ]
End If
Commit Records/Requests
Refresh Window
If [ $delete = 1 ]
Delete Record/Request
[ No di... |
HelpGiveThanks/BudgetPlanner | scripts/returnToMoneyFromSource.c | <reponame>HelpGiveThanks/BudgetPlanner<gh_stars>0
returnToMoneyFromSource
Go to Layout [ “income2” (in) ]
January 8, 平成26 19:00:15 Budget Research.fp7 - returnToMoneyFromSource -1-
|
HelpGiveThanks/BudgetPlanner | scripts/duplicateIncome.c | <filename>scripts/duplicateIncome.c
duplicateIncome
Allow User Abort [ Off ]
Set Error Capture [ On ]
Set Variable [ $record; Value:in::_Lin ]
Set Variable [ $date; Value:in::date ]
New Window [ ]
New Record/Request
Set Variable [ $recordDuplicate; Value:in::_Lin ]
Delete Record/Request
[ No dialog ]
Enter Find Mode [ ... |
HelpGiveThanks/BudgetPlanner | scripts/moreInfo.c | <gh_stars>0
moreInfo
New Window [ Name: "More Info"; Left: Get ( WindowDesktopWidth ) - (Get ( WindowDesktopWidth ) / 2 ) ]
Go to Layout [ “moreInfo” (budget) ]
Adjust Window
[ Resize to Fit ]
Pause/Resume Script [ Indefinitely ]
February 6, 平成26 9:28:43 Budget Planner.fp7 - moreInfo -1-
|
HelpGiveThanks/BudgetPlanner | scripts/gotoSource.c | gotoSource
Set Error Capture [ On ]
Allow User Abort [ Off ]
Set Field [ budget::inLayoutGlobal; Get (LayoutName) ]
Go to Layout [ “source” (source) ]
Enter Find Mode [ ]
Set Field [ source::kbudget; budget::budgetGlobal ]
Perform Find [ ]
Sort Records [ Specified Sort Order: source::source; ascending ]
[ Restore; No d... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.