repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
slimlime/SpartanEngine
Runtime/Resource/ProgressTracker.h
/* Copyright(c) 2016-2021 <NAME> 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, modify, merge, publish, distribute, subl...
slimlime/SpartanEngine
Runtime/Scripting/ScriptingApi.h
<filename>Runtime/Scripting/ScriptingApi.h /* Copyright(c) 2016-2021 <NAME> 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, cop...
slimlime/SpartanEngine
Runtime/RHI/RHI_Implementation.h
<gh_stars>0 /* Copyright(c) 2016-2021 <NAME> 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, modify, merge, publish, dist...
slimlime/SpartanEngine
Runtime/Math/MathHelper.h
/* Copyright(c) 2016-2021 <NAME> 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, modify, merge, publish, distribute, subl...
slimlime/SpartanEngine
Runtime/Rendering/Renderer.h
<reponame>slimlime/SpartanEngine<filename>Runtime/Rendering/Renderer.h /* Copyright(c) 2016-2021 <NAME> 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 limit...
CrazyKnightGR/opentrack
tracker-edtracker/ftnoir_tracker_edtracker.h
/* Copyright (c) 2014 <NAME> <<EMAIL>> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. */ #pragma once #include <cinttypes> #include "ui_edtracke...
margrietpalm/VisGrid3D
src/colormap.h
// // Created by mpalm on 17/03/17. // #ifndef VISGRID3D_COLORMAP_H #define VISGRID3D_COLORMAP_H #include <string> #include <map> #include <cmath> #include "colortable.h" class ColorMap{ public: ColorMap(){ gmin = 0; gmax = -1; std::string thisfile = __FILE__; std::string fn = thisfile.substr(0, t...
margrietpalm/VisGrid3D
src/datareader.h
// // Created by mpalm on 15/03/17. // #ifndef VISGRID3D_READER_H #define VISGRID3D_READER_H #include <map> #include <string> #include <vector> #include <vtkSmartPointer.h> #include <vtkStructuredPointsReader.h> #include <vtkDataArray.h> struct stepdata { vtkSmartPointer<vtkStructuredPoints> sp; vtkSmartPointer...
margrietpalm/VisGrid3D
src/visualizer.h
<gh_stars>0 // // Created by mpalm on 15/03/17. // #ifndef VISGRID3D_VISUALIZER_H #define VISGRID3D_VISUALIZER_H #include <vector> #include <utility> #include <vtkActor.h> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #...
margrietpalm/VisGrid3D
src/colortable.h
// // Created by mpalm on 16/03/17. // #ifndef VISGRID3D_COLORTABLE_H #define VISGRID3D_COLORTABLE_H #include <string> #include <fstream> struct color { double r, g, b; }; class ColorTable { public: ColorTable() { std::string thisfile = __FILE__; std::string fn_colortable = thisfile.substr(0, thisfile.r...
OpenRPGs/OpenRPG
OpenRPG/GUI/PauseMenu.h
<reponame>OpenRPGs/OpenRPG #pragma once class PauseMenu { private: sf::Font& font; sf::Text menuText; sf::RectangleShape background; sf::RectangleShape container; std::map<std::string, gui::Button*> buttons; //Private Functions public: PauseMenu(sf::VideoMode& vm, sf::Font& font); virtual ~PauseMenu(); /...
OpenRPGs/OpenRPG
OpenRPG/GUI/Gui.h
#pragma once enum button_states { BTN_IDLE = 0, BTN_HOVER, BTN_ACTIVE }; namespace gui { const float p2pX(const float perc, const sf::VideoMode& vm); const float p2pY(const float perc, const sf::VideoMode& vm); const unsigned calcCharSize(const sf::VideoMode& vm, const unsigned modifier = 60); class Button { ...
OpenRPGs/OpenRPG
OpenRPG/Managers/SoundManager.h
#pragma once #include "Components/SoundComponent.h" /// <summary> /// <see cref="SoundComponent"/>를 통합 관리하는 클래스입니다. /// </summary> class SoundManager { public: /// <summary> /// 싱글톤 인스턴스를 가져옵니다. /// 기존에 인스턴스가 없었다면 새로 생성합니다. /// </summary> /// <returns><see cref="SoundManager"/>의 싱글톤 객체입니다.</returns> static S...
OpenRPGs/OpenRPG
OpenRPG/Item/Item.h
#ifndef ITEM_H #define ITEM_H class Item { private: public: Item(); virtual ~Item(); }; #endif //Item.h
OpenRPGs/OpenRPG
OpenRPG/Entities/Rat.h
<filename>OpenRPG/Entities/Rat.h #pragma once #include "Enemy.h" class Rat : public Enemy { private: void initVariables(); void initAnimations(); float x; float y; public: Rat(float x, float y, sf::Texture& texture_sheet); virtual ~Rat(); //Functions void updateAnimation(const float & dt); void update(co...
OpenRPGs/OpenRPG
OpenRPG/Managers/StateManager.h
<reponame>OpenRPGs/OpenRPG #pragma once #include "States/State.h" class StateManager { public: /// <summary> /// 싱글톤 인스턴스를 가져옵니다. /// 기존에 인스턴스가 없었다면 새로 생성합니다. /// </summary> /// <returns><see cref="StateManager"/>의 싱글톤 객체입니다.</returns> static StateManager* getInstance(); /// <summary> ///모든 장면을 정리하고 삭제합니다...
OpenRPGs/OpenRPG
OpenRPG/Game/Game.h
#pragma once #include "States/State.h" #include "Managers/StateManager.h" #include "../GraphicsSettings.h" class Game { private: //private생성자 소멸자 Game(); virtual ~Game(); //변수 GraphicsSettings gfxSettings; StateData stateData; static Game* Instance; sf::RenderWindow* window; sf::Event sfEvent; StateManag...
OpenRPGs/OpenRPG
OpenRPG/Components/HitboxComponent.h
<gh_stars>10-100 #pragma once class HitboxComponent { private: sf::Sprite& sprite; sf::RectangleShape hitbox; sf::FloatRect nextPosition; float offsetX; float offsetY; public: HitboxComponent(sf::Sprite& sprite, float offset_x, float offset_y, float width, float height); virtual ~HitboxComponent(); //Ac...
OpenRPGs/OpenRPG
OpenRPG/States/Game/GameState.h
#pragma once #include "Entities/Player.h" #include "GUI/PauseMenu.h" #include "../../Maps/TileMap.h" #include "../../Gui/PlayerGUI.h" class GameState : public State { private: sf::View view; sf::Vector2i viewGridPosition; sf::RenderTexture renderTexture; sf::Sprite renderSprite; sf::Font font; PauseMenu* pm...
OpenRPGs/OpenRPG
OpenRPG/States/Editor/EditorState.h
#ifndef EDITORSTATE_H #define EDITORSTATE_H #include "../State.h" #include "../../GUI/Gui.h" #include "../../GUI/PauseMenu.h" #include "../../Maps/TileMap.h" #include "../../Mode/EditorMode.h" class State; class StateData; class Gui; class PauseMenu; class TileMap; class Tile; class EditorMode; class DefaultEditorMo...
OpenRPGs/OpenRPG
OpenRPG/Entities/Entity.h
#pragma once #include "Components/MovementComponent.h" #include "Components/AnimationComponent.h" #include "Components/HitboxComponent.h" #include "Components/SoundComponent.h" #include "../Components/SkillComponent.h" #include "../Components/AttributeComponent.h" class Entity { private: void initVariables(); prot...
OpenRPGs/OpenRPG
OpenRPG/States/State.h
<filename>OpenRPG/States/State.h #pragma once #include "../GraphicsSettings.h" class Player; class GraphicsSettings; class State; class StateData { public: StateData() {}; //Variables float gridSize; sf::RenderWindow* window; GraphicsSettings* gfxSettings; std::map<std::string, int>* supportedKeys; //std:...
OpenRPGs/OpenRPG
OpenRPG/Mode/EditorMode.h
<reponame>OpenRPGs/OpenRPG<filename>OpenRPG/Mode/EditorMode.h #ifndef EDITORMODE_H #define EDITORMODE_H #include "../States/State.h" #include "../Maps/TileMap.h" #include "../GUI/Gui.h" class State; class StateData; class TileMap; class Tile; class EditorStateData { public: EditorStateData() {}; //Variables sf:...
OpenRPGs/OpenRPG
OpenRPG/Maps/TileMap.h
#pragma once #include "../Tiles/Tile.h" #include "../Entities/Entity.h" #include "../Tiles/EnemySpawnerTile.h" #include "../Tiles/RegularTile.h" #include "../Entities/EnemySystem.h" class TileMap { private: void clear(); float gridSizeF; int gridSizeI; sf::Vector2i maxSizeWorldGrid; sf::Vector2f maxSizeWorldF; ...
OpenRPGs/OpenRPG
OpenRPG/Item/Sword.h
<reponame>OpenRPGs/OpenRPG #ifndef SWORD_H #define SWORD_H #include "MeleeWeapon.h" class MeleeWeapon; class Sword : public MeleeWeapon { private: public: Sword(); virtual ~Sword(); virtual void update(const sf::Vector2f& mouse_pos_view, const sf::Vector2f center); virtual void render(sf::RenderTarget& target...
OpenRPGs/OpenRPG
OpenRPG/Entities/Player.h
#pragma once #include "Entity.h" #include "../Item/Sword.h" class Player : public Entity { private: //Variables bool attacking; Sword sword; //Initializer functions void initVariables(); void initComponents(); void initAnimations(); public: Player(float x, float y, sf::Texture& texture_sheet); virtual ~P...
OpenRPGs/OpenRPG
OpenRPG/Entities/EnemySystem.h
<gh_stars>10-100 #pragma once #include "../Tiles/EnemySpawnerTile.h" #include "Rat.h" enum EnemyTypes {RAT = 0}; class EnemySystem { private: std::map<std::string, sf::Texture>& textures; std::vector<Enemy*>& activeEnemies; public: EnemySystem(std::vector<Enemy*>& activeEnemies, std::map<std::string, sf::Tex...
OpenRPGs/OpenRPG
OpenRPG/States/Settings/SettingsState.h
<reponame>OpenRPGs/OpenRPG #pragma once #include "States/State.h" #include "GUI/Gui.h" class SettingsState : public State { private: //Variables sf::Texture backgroundTexture; sf::RectangleShape background; sf::Font font; std::map<std::string, gui::Button*> buttons; std::map<std::string, gui::DropDownList*> ...
OpenRPGs/OpenRPG
OpenRPG/Components/AnimationComponent.h
#pragma once class AnimationComponent { private: class Animation { public: //Variables sf::Sprite& sprite; sf::Texture& textureSheet; float animationTimer; float timer; bool done; int width; int height; sf::IntRect startRect; sf::IntRect currentRect; sf::IntRect endRect; Animation(sf::Spri...
OpenRPGs/OpenRPG
OpenRPG/Components/SoundComponent.h
#pragma once /// <summary> /// <see cref="sf::SoundBuffer"/>를 재생 가능한 상태로 불러오는 클래스입니다. /// </summary> class SoundComponent { private: /// <summary> /// 버퍼에서 생성된 <see cref="sf::Sound"/> 객체입니다. /// 할당에 실패하면 <c>NULL</c> 입니다. /// </summary> sf::Sound *sound; public: /// <summary>전달된 <paramref name="buffer"/>가 불...
OpenRPGs/OpenRPG
OpenRPG/Item/RangedWeapon.h
<reponame>OpenRPGs/OpenRPG #ifndef RANGEDWEAPON_H #define RANGEDWEAPON_H #include "Item.h" class Item; class RangedWeapon : public Item { private: public: RangedWeapon(); virtual ~RangedWeapon(); }; #endif //!RANGEDWEAPON_H;
OpenRPGs/OpenRPG
OpenRPG/Entities/Enemy.h
<reponame>OpenRPGs/OpenRPG #pragma once #include "Entity.h" #include "../Tiles/EnemySpawnerTile.h" class Entity; class EnemySpawnerTile; class Enemy : public Entity { private: //Variables //EnemySpawner& enemySpawner; //Initializer functions virtual void initVariables() = 0; virtual void initAnimations() = 0;...
OpenRPGs/OpenRPG
OpenRPG/GraphicsSettings.h
#pragma once class GraphicsSettings { public: GraphicsSettings(); //Variables std::string title; sf::VideoMode resolution; bool fullscreen; bool verticalSync; unsigned frameRateLimit; sf::ContextSettings contextSettings; std::vector<sf::VideoMode> videoModes; //Functions void saveToFile(const std::string ...
OpenRPGs/OpenRPG
OpenRPG/Components/AttributeComponent.h
#pragma once class AttributeComponent { public: //Leveling int level; int exp; int expNext; int attributePoints; //Attributes int vitality; int strength; int dexterity; int agility; int intelligence; //Stats int hp; int hpMax; int damageMin; int damageMax; int accuracy; int defence; int luck; //...
OpenRPGs/OpenRPG
OpenRPG/Components/MovementComponent.h
#pragma once enum movement_states { IDLE = 0, MOVING, MOVING_LEFT, MOVING_RIGHT, MOVING_UP, MOVING_DOWN }; class MovementComponent { private: sf::Sprite& sprite; float maxVelocity; float acceleration; float deceleration; sf::Vector2f velocity; //Initializer functions public: MovementComponent(sf::Sprite& s...
OpenRPGs/OpenRPG
OpenRPG/Tiles/Tile.h
<reponame>OpenRPGs/OpenRPG #pragma once enum TileTypes { DEFAULT = 0, DAMAGING, DOODAD, ENEMYSPAWNER }; class Tile { private: protected: sf::Sprite shape; bool collision; short type; public: Tile(); Tile(short type, int grid_x, int grid_y, float gridSizeF, const sf::Texture& texture, const sf::IntRect& textu...
OpenRPGs/OpenRPG
OpenRPG/Components/SkillComponent.h
#ifndef SKILLCOMPONENT_H #define SKILLCOMPONENT_H enum SKILLS { CONSTITUTION = 0, MELEE_COMBAT, RANGED_COMBAT, ENDURANCE }; class SkillComponent { private: class Skill { private: int type; int level; int levelCap; int exp; int expNext; public: Skill(int type) { this->type = type; this->level...
OpenRPGs/OpenRPG
OpenRPG/Tiles/RegularTile.h
#pragma once #include "Tile.h" class RegularTile : public Tile { private: protected: public: RegularTile(short type, int grid_x, int grid_y, float gridSizeF, const sf::Texture& texture, const sf::IntRect& texture_rect, bool collision = false); virtual ~RegularTile(); //Functions virtual const std::string...
OpenRPGs/OpenRPG
OpenRPG/Item/MeleeWeapon.h
#ifndef MELEEWEAPON_H #define MELEEWEAPON_H #include "Item.h" class Item; class MeleeWeapon : public Item { private: protected: sf::Texture weapon_texture; sf::Sprite weapon_sprite; int damageMin; int damageMax; public: MeleeWeapon(); virtual ~MeleeWeapon(); virtual void update(const sf::Vector2f& mouse_...
OpenRPGs/OpenRPG
OpenRPG/Mode/EditorModes.h
<filename>OpenRPG/Mode/EditorModes.h //Collection of editor modes #include "DefaultEditorMode.h" #include "EnemyEditorMode.h"
OpenRPGs/OpenRPG
OpenRPG/States/MainMenu/MainMenuState.h
#pragma once #include "GUI/Gui.h" class MainMenuState : public State { private: //변수 bool fadeOutFlag; float backGroundColor; sf::Texture backgroundTexture; sf::Texture btnTexure; sf::RectangleShape background; sf::Font font; std::map<std::string, gui::Button*> buttons; //함수 void initVariables(); void i...
OpenRPGs/OpenRPG
OpenRPG/Mode/DefaultEditorMode.h
<gh_stars>10-100 #ifndef DEFAULTEDITORMODE_H #define DEFAULTEDITORMODE_H #include "EditorMode.h" #include "../GUI/Gui.h" class State; class StateData; class EditorMode; class TileMap; class Tile; class DefaultEditorMode : public EditorMode { private: sf::Text cursorText; sf::RectangleShape sidebar; sf::Rectangl...
OpenRPGs/OpenRPG
OpenRPG/GUI/PlayerGUI.h
<filename>OpenRPG/GUI/PlayerGUI.h #pragma once #include "../Entities/Player.h" #include "../GUI/Gui.h" class Player; class sf::RectangleShape; class PlayerGUI { private: Player* player; sf::VideoMode& vm; sf::Font font; //Level bar std::string levelBarString; sf::Text levelBarText; sf::RectangleShape level...
OpenRPGs/OpenRPG
OpenRPG/Tiles/EnemySpawnerTile.h
#pragma once #include "Tile.h" class Tile; class EnemySpawnerTile : public Tile { private: int enemyType; int enemyAmount; int enemyTimeToSpawn; float enemyMaxDistance; bool spawned; public: EnemySpawnerTile(int grid_x, int grid_y, float gridSizeF, const sf::Texture& texture, const sf::IntRect& texture_...
OpenRPGs/OpenRPG
OpenRPG/Bow.h
#ifndef BOW_H #define BOW_H #include "RangedWeapon.h" class RangedWeapon; class Bow : public RangedWeapon { private: public: Bow(); virtual ~Bow(); }; #endif //!BOW_H
OpenRPGs/OpenRPG
OpenRPG/Mode/EnemyEditorMode.h
<reponame>OpenRPGs/OpenRPG<gh_stars>10-100 #ifndef ENEMYEDITORMODE_H #define ENEMYEDITORMODE_H #include "EditorMode.h" #include "../Tiles/EnemySpawnerTile.h" class State; class StateData; class EditorMode; class TileMap; class Tile; class EnemySpawner; class EnemyEditorMode : public EditorMode { private: sf::Text...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseDevices/Persistence/RTBrowseDevicesDataManager.h
<reponame>bobby-vandiver/reeltime-ios #import "RTPagedListDataManager.h" @interface RTBrowseDevicesDataManager : RTPagedListDataManager @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangePassword/Assembly/RTChangePasswordAssembly.h
#import "TyphoonAssembly.h" @class RTClientAssembly; @class RTApplicationAssembly; @class RTChangePasswordWireframe; @class RTChangePasswordViewController; @class RTChangePasswordPresenter; @class RTChangePasswordInteractor; @class RTChangePasswordDataManager; @interface RTChangePasswordAssembly : TyphoonAssembly @...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Presentation/RTErrorCodeToErrorMessagePresenterDelelgate.h
#import <Foundation/Foundation.h> @protocol RTErrorCodeToErrorMessagePresenterDelelgate <NSObject> - (void)presentErrorMessage:(NSString *)message forCode:(NSInteger)code; @optional - (void)failedToPresentError:(NSError *)error; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UploadVideo/Presentation/RTUploadVideoView.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/UseCase/UploadVideo/Presentation/RTUploadVideoView.h<gh_stars>0 #import <Foundation/Foundation.h> #import "RTErrorMessageView.h" #import "RTFieldValidationErrorView.h" typedef NS_ENUM(NSInteger, RTUploadVideoViewField) { RTUploadVideoViewFieldVideoTitle,...
bobby-vandiver/reeltime-ios
ReelTime-iOSTests/ClientTests/RTClientSpecCallbackExpectation.h
<filename>ReelTime-iOSTests/ClientTests/RTClientSpecCallbackExpectation.h<gh_stars>0 #import <Foundation/Foundation.h> #import "RTAuthenticationAwareHTTPClient.h" #import <Specta/SpectaDSL.h> extern NSString *const BAD_REQUEST_ERROR_MESSAGE; extern NSString *const NOT_FOUND_ERROR_MESSAGE; extern NSString *const FORBI...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/FollowUser/Presentation/RTFollowUserPresenter.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/UseCase/FollowUser/Presentation/RTFollowUserPresenter.h #import <Foundation/Foundation.h> #import "RTFollowUserInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTFollowUserView; @class RTFollowUserInteractor; @interfac...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangeDisplayName/Assembly/RTChangeDisplayNameAssembly.h
#import "TyphoonAssembly.h" @class RTClientAssembly; @class RTApplicationAssembly; @class RTChangeDisplayNameWireframe; @class RTChangeDisplayNameViewController; @class RTChangeDisplayNamePresenter; @class RTChangeDisplayNameInteractor; @class RTChangeDisplayNameDataManager; @interface RTChangeDisplayNameAssembly : ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Assembly/RTSecurityAssembly.h
<gh_stars>0 #import <Typhoon/Typhoon.h> @class RTKeyChainWrapper; @interface RTSecurityAssembly : TyphoonAssembly - (RTKeyChainWrapper *)keyChainWrapper; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTClientCredentials.h
#import <Foundation/Foundation.h> @interface RTClientCredentials : NSObject <NSSecureCoding> @property (nonatomic, copy) NSString *clientId; @property (nonatomic, copy) NSString *clientSecret; - (instancetype)initWithClientId:(NSString *)clientId clientSecret:(NSString *)clientSecret; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/DeleteVideo/Domain/RTDeleteVideoInteractorDelegate.h
<gh_stars>0 #import <Foundation/Foundation.h> @protocol RTDeleteVideoInteractorDelegate <NSObject> - (void)deleteVideoSucceededForVideoId:(NSNumber *)videoId; - (void)deleteVideoFailedForVideoId:(NSNumber *)videoId withError:(NSError *)error; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RevokeClient/Domain/RTRevokeClientInteractor.h
<filename>ReelTime-iOS/UseCase/RevokeClient/Domain/RTRevokeClientInteractor.h #import <Foundation/Foundation.h> @protocol RTRevokeClientInteractorDelegate; @class RTRevokeClientDataManager; @class RTCurrentUserService; @interface RTRevokeClientInteractor : NSObject - (instancetype)initWithDelegate:(id<RTRevokeClient...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ManageDevices/Presentation/RTManageDevicesView.h
<reponame>bobby-vandiver/reeltime-ios<gh_stars>0 #import <Foundation/Foundation.h> #import "RTErrorMessageView.h" @class RTClientDescription; @protocol RTManageDevicesView <NSObject, RTErrorMessageView> - (void)showClientDescription:(RTClientDescription *)description; - (void)clearClientDescriptions; - (void)clear...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Login/Presentation/RTLoginView.h
<gh_stars>0 #import <Foundation/Foundation.h> #import "RTErrorMessageView.h" #import "RTFieldValidationErrorView.h" typedef NS_ENUM(NSInteger, RTLoginViewField) { RTLoginViewFieldUsername, RTLoginViewFieldPassword }; @protocol RTLoginView <NSObject, RTErrorMessageView, RTFieldValidationErrorView> @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUserFollowees/Assembly/RTBrowseUserFolloweesViewControllerFactory.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> @class RTBrowseUserFolloweesViewController; @protocol RTBrowseUserFolloweesViewControllerFactory <NSObject> - (RTBrowseUserFolloweesViewController *)browseUserFolloweesViewControllerForUsername:(NSString *)username; @end
bobby-vandiver/reeltime-ios
ReelTime-iOSTests/Common/RTErrorPresentationChecker.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" #import "RTTestCallbacks.h" #import "RTErrorMessageView.h" @interface RTErrorPresentationChecker : NSObject - (instancetype)initWithView:(id<RTErrorMessageView>)view errorsCallback:(ArrayCallback)errorsCallback errorFactoryCallback:(Erro...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUsers/Persistence/RTBrowseUsersDataManagerDelegate.h
<gh_stars>0 #import <Foundation/Foundation.h> #import "RTAPIClient.h" @protocol RTBrowseUsersDataManagerDelegate <NSObject> - (void)listUsersPage:(NSUInteger)page withClient:(RTAPIClient *)client success:(UserListCallback)success failure:(ServerErrorsCallback)failure; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseAudienceMembers/Assembly/RTBrowseAudienceMembersViewControllerFactory.h
#import <Foundation/Foundation.h> @class RTBrowseAudienceMembersViewController; @protocol RTBrowseAudienceMembersViewControllerFactory <NSObject> - (RTBrowseAudienceMembersViewController *)browseAudienceMembersViewControllerForReelId:(NSNumber *)reelId; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Security/RTKeyChainWrapper.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/Common/Security/RTKeyChainWrapper.h #import <Foundation/Foundation.h> #import <UICKeyChainStore/UICKeyChainStore.h> @interface RTKeyChainWrapper : NSObject - (instancetype)initWithKeyChainStore:(UICKeyChainStore *)keyChainStore; - (id<NSSecureCoding>)object...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Domain/RTResetPasswordError.h
<reponame>bobby-vandiver/reeltime-ios<gh_stars>0 #import <Foundation/Foundation.h> extern NSString *const RTResetPasswordErrorDomain; typedef NS_ENUM(NSInteger, RTResetPasswordError) { RTResetPasswordErrorMissingResetCode, RTResetPasswordErrorMissingUsername, RTResetPasswordErrorMissingPassword, RTRes...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ConfirmAccount/Assembly/RTConfirmAccountAssembly.h
#import "TyphoonAssembly.h" @class RTClientAssembly; @class RTApplicationAssembly; @class RTConfirmAccountWireframe; @class RTConfirmAccountViewController; @class RTConfirmAccountPresenter; @class RTConfirmAccountInteractor; @class RTConfirmAccountDataManager; @interface RTConfirmAccountAssembly : TyphoonAssembly @...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RemoveAccount/Presentation/RTRemoveAccountViewController.h
#import <UIKit/UIKit.h> #import "RTRemoveAccountView.h" #import "RTStoryboardViewController.h" @class RTRemoveAccountPresenter; @interface RTRemoveAccountViewController : UIViewController <RTRemoveAccountView, RTStoryboardViewController> + (instancetype)viewControllerWithPresenter:(RTRemoveAccountPresenter *)presen...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/DeviceRegistration/Persistence/RTDeviceRegistrationDataManager.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> #import "RTCallbacks.h" @protocol RTDeviceRegistrationDataManagerDelegate; @class RTAPIClient; @class RTClientCredentialsStore; @class RTUserCredentials; @class RTClientCredentials; @interface RTDeviceRegistrationDataManager : NSObject - (inst...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/LeaveAudience/Domain/RTLeaveAudienceInteractor.h
#import <Foundation/Foundation.h> @protocol RTLeaveAudienceInteractorDelegate; @class RTLeaveAudienceDataManager; @interface RTLeaveAudienceInteractor : NSObject - (instancetype)initWithDelegate:(id<RTLeaveAudienceInteractorDelegate>)delegate dataManager:(RTLeaveAudienceDataManager *)dataManager...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Assembly/RTAccountRegistrationAssembly.h
#import <Typhoon/Typhoon.h> @class RTClientAssembly; @class RTSecureStoreAssembly; @class RTApplicationAssembly; @class RTLoginAssembly; @class RTAccountRegistrationAutoLoginAssembly; @class RTDeviceRegistrationAssembly; @class RTAccountRegistrationWireframe; @class RTAccountRegistrationViewController; @class RTAcc...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Newsfeed/Navigation/RTNewsfeedWireframe.h
#import <Foundation/Foundation.h> #import "RTUserWireframe.h" #import "RTReelWireframe.h" #import "RTVideoWireframe.h" @class RTNewsfeedViewController; @interface RTNewsfeedWireframe : NSObject <RTUserWireframe, RTReelWireframe, RTVideoWireframe> - (instancetype)initWithViewController:(RTNewsfeedViewController *)vi...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTOAuth2Token.h
<filename>ReelTime-iOS/Common/Model/RTOAuth2Token.h<gh_stars>0 #import <Foundation/Foundation.h> @interface RTOAuth2Token : NSObject <NSSecureCoding> @property (nonatomic, copy) NSString *accessToken; @property (nonatomic, copy) NSString *refreshToken; @property (nonatomic, copy) NSString *tokenType; @property (nonat...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangeDisplayName/Presentation/RTChangeDisplayNamePresenter.h
#import <Foundation/Foundation.h> #import "RTChangeDisplayNameInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTChangeDisplayNameView; @class RTChangeDisplayNameInteractor; @interface RTChangeDisplayNamePresenter : NSObject <RTChangeDisplayNameInteractorDelegate, RTErrorCodeTo...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Assembly/RTAccountRegistrationAutoLoginAssembly.h
#import <Typhoon/Typhoon.h> @class RTClientAssembly; @class RTSecureStoreAssembly; @class RTCommonComponentsAssembly; @class RTAccountRegistrationAssembly; @class RTLoginInteractor; @class RTLoginDataManager; @interface RTAccountRegistrationAutoLoginAssembly : TyphoonAssembly @property (nonatomic, strong, readonly)...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Error/RTErrorFactory.h
#import <Foundation/Foundation.h> #import "RTAccountRegistrationError.h" #import "RTAddVideoToReelError.h" #import "RTConfirmAccountError.h" #import "RTChangeDisplayNameError.h" #import "RTChangePasswordError.h" #import "RTCreateReelError.h" #import "RTDeleteReelError.h" #import "RTDeleteVideoError.h" #import "RTDevic...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Presentation/RTVideoDescription.h
<filename>ReelTime-iOS/Common/Presentation/RTVideoDescription.h #import <Foundation/Foundation.h> @class RTThumbnail; @interface RTVideoDescription : NSObject @property (readonly, copy) NSString *title; @property (readonly, copy) NSNumber *videoId; @property (readonly, copy) NSData *thumbnailData; + (RTVideoDescrip...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Logout/Persistence/RTLogoutDataManager.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @class RTOAuth2TokenStore; @class RTCurrentUserStore; @interface RTLogoutDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client tokenStore:(RTOAuth2TokenStore *)tokenStore currentUserS...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Logging/RTLogging.h
#import <CocoaLumberjack/CocoaLumberjack.h> static const DDLogLevel ddLogLevel = DDLogLevelVerbose;
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Validation/RTPasswordValidationMapping.h
#import <Foundation/Foundation.h> @interface RTPasswordValidationMapping : NSObject @property (readonly) NSString *errorDomain; @property (readonly) NSInteger missingPasswordErrorCode; @property (readonly) NSInteger invalidPasswordErrorCode; @property (readonly) NSInteger missingConfirmationPasswordErrorCode; @prop...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/CaptureThumbnail/Presentation/RTCaptureThumbnailViewController.h
<reponame>bobby-vandiver/reeltime-ios<gh_stars>0 #import <UIKit/UIKit.h> #import "RTStoryboardViewController.h" @class RTPlayerFactory; @class RTPlayerView; @class RTFilePathGenerator; @class RTCaptureThumbnailPresenter; @interface RTCaptureThumbnailViewController : UIViewController <RTStoryboardViewController> @pr...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UnfollowUser/Domain/RTUnfollowUserInteractorDelegate.h
#import <Foundation/Foundation.h> @protocol RTUnfollowUserInteractorDelegate <NSObject> - (void)unfollowUserSucceededForUsername:(NSString *)username; - (void)unfollowUserFailedForUsername:(NSString *)username withError:(NSError *)error; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RemoveVideoFromReel/Domain/RTRemoveVideoFromReelInteractor.h
<reponame>bobby-vandiver/reeltime-ios<gh_stars>0 #import <Foundation/Foundation.h> @protocol RTRemoveVideoFromReelInteractorDelegate; @class RTRemoveVideoFromReelDataManager; @interface RTRemoveVideoFromReelInteractor : NSObject - (instancetype)initWithDelegate:(id<RTRemoveVideoFromReelInteractorDelegate>)delegate ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Login/Domain/RTLoginNotification.h
<gh_stars>0 #import <Foundation/Foundation.h> extern NSString *const RTLoginDidSucceedNotification;
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/LeaveAudience/Presentation/RTLeaveAudiencePresenter.h
#import <Foundation/Foundation.h> #import "RTLeaveAudienceInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTLeaveAudienceView; @class RTLeaveAudienceInteractor; @interface RTLeaveAudiencePresenter : NSObject <RTLeaveAudienceInteractorDelegate, RTErrorCodeToErrorMessagePresente...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Login/Assembly/RTLoginAssembly.h
<filename>ReelTime-iOS/UseCase/Login/Assembly/RTLoginAssembly.h #import <Typhoon/Typhoon.h> @class RTClientAssembly; @class RTSecureStoreAssembly; @class RTCommonComponentsAssembly; @class RTAccountRegistrationAssembly; @class RTDeviceRegistrationAssembly; @class RTResetPasswordAssembly; @class RTApplicationAssembl...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Newsfeed/Presentation/RTNewsfeedPresenter.h
<filename>ReelTime-iOS/UseCase/Newsfeed/Presentation/RTNewsfeedPresenter.h #import "RTPagedListPresenter.h" #import "RTPagedListPresenterDelegate.h" @protocol RTNewsfeedView; @class RTPagedListInteractor; @class RTNewsfeedWireframe; @class RTNewsfeedMessageSource; @interface RTNewsfeedPresenter : RTPagedListPresenter...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ConfirmAccount/Presentation/RTConfirmAccountPresenter.h
#import <Foundation/Foundation.h> #import "RTConfirmAccountInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTConfirmAccountView; @class RTConfirmAccountInteractor; @interface RTConfirmAccountPresenter : NSObject <RTConfirmAccountInteractorDelegate, RTErrorCodeToErrorMessagePre...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Client/Factory/RTResponseDescriptorFactory.h
<gh_stars>0 #import <Foundation/Foundation.h> #import <RestKit/RestKit.h> @interface RTResponseDescriptorFactory : NSObject + (RKResponseDescriptor *)tokenDescriptor; + (RKResponseDescriptor *)tokenErrorDescriptor; + (RKResponseDescriptor *)accountRegistrationDescriptor; + (RKResponseDescriptor *)accountRegistration...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UploadVideo/Persistence/RTUploadVideoDataManager.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @interface RTUploadVideoDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)uploadVideo:(NSURL *)videoUrl thumbnail:(NSURL *)thumbnailUrl withTitle:(NSString *)title toReel...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Service/RTClientCredentialsService.h
<filename>ReelTime-iOS/Common/Service/RTClientCredentialsService.h #import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTClientCredentials; @class RTClientCredentialsStore; @interface RTClientCredentialsService : NSObject - (instancetype)initWithClientCredentialsStore:(RTClientCredentialsStore *)clientC...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Assembly/RTApplicationAssembly.h
#import <Typhoon/Typhoon.h> #import "RTApplicationNavigationControllerFactory.h" #import "RTLoginAssembly.h" #import "RTAppDelegate.h" #import "RTApplicationWindowHandle.h" #import "RTApplicationWireframe.h" #import "RTApplicationWireframeContainer.h" #import "RTRecordVideoAssembly.h" #import "RTNewsfeedAssembly.h"...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UserProfile/Assembly/RTUserProfileViewControllerFactory.h
#import <Foundation/Foundation.h> @class RTUserProfileViewController; @protocol RTUserProfileViewControllerFactory <NSObject> - (RTUserProfileViewController *)userProfileViewControllerForUsername:(NSString *)username; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RemoveAccount/Domain/RTRemoveAccountError.h
<filename>ReelTime-iOS/UseCase/RemoveAccount/Domain/RTRemoveAccountError.h #import <Foundation/Foundation.h> extern NSString *const RTRemoveAccountErrorDomain; typedef NS_ENUM(NSInteger, RTRemoveAccountError) { RTRemoveAccountErrorUnauthorized, RTRemoveAccountErrorUnknownError };
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Presentation/RTResetPasswordView.h
<gh_stars>0 #import <Foundation/Foundation.h> #import "RTMessageView.h" #import "RTErrorMessageView.h" #import "RTFieldValidationErrorView.h" typedef NS_ENUM(NSInteger, RTResetPasswordViewField) { RTResetPasswordViewFieldResetCode, RTResetPasswordViewFieldUsername, RTResetPasswordViewFieldPassword, RT...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Error/RTServerErrorsConverter.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> @protocol RTServerErrorMessageToErrorCodeMapping; @class RTServerErrors; @interface RTServerErrorsConverter : NSObject - (instancetype)initWithMapping:(id<RTServerErrorMessageToErrorCodeMapping>)mapping; - (NSError *)convertFirstErrorFromServer...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Persistence/RTResetPasswordDataManager.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @class RTClientCredentials; @interface RTResetPasswordDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)submitRequestForResetPasswordEmailForUsername:(NSString *)username ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Domain/RTAccountRegistrationValidator.h
#import "RTValidator.h" @class RTAccountRegistration; @interface RTAccountRegistrationValidator : RTValidator - (BOOL)validateAccountRegistration:(RTAccountRegistration *)registration errors:(NSArray *__autoreleasing *)errors; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangePassword/Presentation/RTChangePasswordViewController.h
<gh_stars>0 #import "RTKeyboardAwareFormViewController.h" #import "RTChangePasswordView.h" #import "RTStoryboardViewController.h" @class RTChangePasswordPresenter; @interface RTChangePasswordViewController : RTKeyboardAwareFormViewController <RTChangePasswordView, RTStoryboardViewController> @property (weak, nonato...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Device/RTDeviceHardware.h
<reponame>bobby-vandiver/reeltime-ios #import "UIDeviceHardware.h" @interface RTDeviceHardware : UIDeviceHardware - (NSString *) platform; - (NSString *) platformString; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Newsfeed/Persistence/RTNewsfeedDataManager.h
#import "RTPagedListDataManager.h" @interface RTNewsfeedDataManager : RTPagedListDataManager @end