├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── debian ├── control │ ├── control-amd64 │ └── control-arm64 ├── feather-1.0-1 │ ├── .DS_Store │ ├── debian │ │ ├── .debhelper │ │ │ ├── feather │ │ │ │ ├── dbgsym-build-ids │ │ │ │ └── dbgsym-root │ │ │ │ │ ├── DEBIAN │ │ │ │ │ ├── control │ │ │ │ │ └── md5sums │ │ │ │ │ └── usr │ │ │ │ │ └── lib │ │ │ │ │ └── debug │ │ │ │ │ └── .build-id │ │ │ │ │ └── 50 │ │ │ │ │ └── 4a193bd491121ec1e0275b886d7ed6af8160d0.debug │ │ │ └── generated │ │ │ │ └── feather │ │ │ │ ├── installed-by-dh_install │ │ │ │ ├── installed-by-dh_installdocs │ │ │ │ └── installed-by-dh_installman │ │ ├── changelog │ │ ├── control │ │ ├── control-amd64 │ │ ├── debhelper-build-stamp │ │ ├── feather.debhelper.log │ │ ├── feather.desktop │ │ ├── feather.substvars │ │ ├── feather │ │ │ ├── DEBIAN │ │ │ │ ├── control │ │ │ │ └── md5sums │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ └── feather │ │ │ │ └── share │ │ │ │ ├── applications │ │ │ │ └── feather.desktop │ │ │ │ ├── doc │ │ │ │ └── feather │ │ │ │ │ └── changelog.Debian.gz │ │ │ │ ├── icons │ │ │ │ └── hicolor │ │ │ │ │ ├── 128x128 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 16x16 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 22x22 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 24x24 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 256x256 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 32x32 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 36x36 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 48x48 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 512x512 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 64x64 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 72x72 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ ├── 96x96 │ │ │ │ │ └── apps │ │ │ │ │ │ └── feather.png │ │ │ │ │ └── scalable │ │ │ │ │ └── apps │ │ │ │ │ └── feather.svg │ │ │ │ │ └── feather.png │ │ │ │ ├── man │ │ │ │ └── man1 │ │ │ │ │ └── feather.1.gz │ │ │ │ └── pixmaps │ │ │ │ └── feather.png │ │ ├── files │ │ └── rules │ └── logo │ │ ├── 128x128 │ │ └── apps │ │ │ └── feather.png │ │ ├── 16x16 │ │ └── apps │ │ │ └── feather.png │ │ ├── 22x22 │ │ └── apps │ │ │ └── feather.png │ │ ├── 24x24 │ │ └── apps │ │ │ └── feather.png │ │ ├── 256x256 │ │ └── apps │ │ │ └── feather.png │ │ ├── 32x32 │ │ └── apps │ │ │ └── feather.png │ │ ├── 36x36 │ │ └── apps │ │ │ └── feather.png │ │ ├── 48x48 │ │ └── apps │ │ │ └── feather.png │ │ ├── 512x512 │ │ └── apps │ │ │ └── feather.png │ │ ├── 64x64 │ │ └── apps │ │ │ └── feather.png │ │ ├── 72x72 │ │ └── apps │ │ │ └── feather.png │ │ ├── 96x96 │ │ └── apps │ │ │ └── feather.png │ │ └── feather.png └── rules │ └── rules ├── feather-1.0 ├── .DS_Store ├── feather.1 ├── featherConfig.json ├── hdr │ ├── action │ │ ├── Action.hpp │ │ ├── ActionHandler.hpp │ │ ├── ActionType.hpp │ │ ├── AlignToMiddleOfScreenAction.hpp │ │ ├── CopyLineAction.hpp │ │ ├── CutAction.hpp │ │ ├── EditLineAboveAction.hpp │ │ ├── EditLineBelowAction.hpp │ │ ├── EditNextCharacterAction.hpp │ │ ├── GetStringsAction.hpp │ │ ├── GotoLineAction.hpp │ │ ├── HighlightBetweenBracketsAction.hpp │ │ ├── JumpToBracketAction.hpp │ │ ├── MoveToByteAction.hpp │ │ ├── MoveToFileBeginAction.hpp │ │ ├── MoveToFileEndAction.hpp │ │ ├── MoveToLineBeginAction.hpp │ │ ├── MoveToLineEndAction.hpp │ │ ├── MoveToLineEndWithEditAction.hpp │ │ ├── MoveToNextWordAction.hpp │ │ ├── MoveToPreviousWordAction.hpp │ │ ├── PasteAction.hpp │ │ ├── RemoveAllAction.hpp │ │ ├── RemoveBetweenBracketsAction.hpp │ │ ├── RemoveBetweenWhiteCharactersAction.hpp │ │ ├── RemoveCharacterUnderCursorAction.hpp │ │ ├── RemoveLineAction.hpp │ │ ├── RemoveUntilFileBeginAction.hpp │ │ ├── RemoveUntilFileEndAction.hpp │ │ ├── RemoveUntilLineEndAction.hpp │ │ ├── RemoveWordBackwardAction.hpp │ │ ├── RemoveWordForwardAction.hpp │ │ ├── ReplaceAllAction.hpp │ │ ├── SaveChangesAction.hpp │ │ ├── SearchSubstringAction.hpp │ │ ├── ShiftRightAction.hpp │ │ ├── SkipEmptyCharactersAction.hpp │ │ ├── SwitchModeAction.hpp │ │ ├── input │ │ │ ├── AlignToMiddleOfScreenActionInput.hpp │ │ │ ├── CopyLineActionInput.hpp │ │ │ ├── CutActionInput.hpp │ │ │ ├── EditLineAboveActionInput.hpp │ │ │ ├── EditLineBelowActionInput.hpp │ │ │ ├── EditNextCharacterActionInput.hpp │ │ │ ├── GetStringsActionInput.hpp │ │ │ ├── GotoLineActionInput.hpp │ │ │ ├── HighlightBetweenBracketsActionInput.hpp │ │ │ ├── JumpToBracketActionInput.hpp │ │ │ ├── MoveToByteActionInput.hpp │ │ │ ├── MoveToFileBeginActionInput.hpp │ │ │ ├── MoveToFileEndActionInput.hpp │ │ │ ├── MoveToLineBeginActionInput.hpp │ │ │ ├── MoveToLineEndActionInput.hpp │ │ │ ├── MoveToLineEndWithEditActionInput.hpp │ │ │ ├── MoveToNextWordActionInput.hpp │ │ │ ├── MoveToPreviousWordActionInput.hpp │ │ │ ├── PasteActionInput.hpp │ │ │ ├── RemoveAllActionInput.hpp │ │ │ ├── RemoveBetweenBracketsActionInput.hpp │ │ │ ├── RemoveBetweenWhiteCharactersActionInput.hpp │ │ │ ├── RemoveCharacterUnderCursorActionInput.hpp │ │ │ ├── RemoveLineActionInput.hpp │ │ │ ├── RemoveUntilFileBeginActionInput.hpp │ │ │ ├── RemoveUntilFileEndActionInput.hpp │ │ │ ├── RemoveUntilLineEndActionInput.hpp │ │ │ ├── RemoveWordBackwardActionInput.hpp │ │ │ ├── RemoveWordForwardActionInput.hpp │ │ │ ├── ReplaceAllActionInput.hpp │ │ │ ├── SaveChangesActionInput.hpp │ │ │ ├── SearchSubstringActionInput.hpp │ │ │ ├── ShiftRightActionInput.hpp │ │ │ ├── SkipEmptyCharactersActionInput.hpp │ │ │ └── SwitchModeActionInput.hpp │ │ └── output │ │ │ ├── AlignToMiddleOfScreenActionOutput.hpp │ │ │ ├── CopyLineActionOutput.hpp │ │ │ ├── CutActionOutput.hpp │ │ │ ├── EditLineAboveActionOutput.hpp │ │ │ ├── EditLineBelowActionOutput.hpp │ │ │ ├── EditNextCharacterActionOutput.hpp │ │ │ ├── GetStringsActionOutput.hpp │ │ │ ├── GotoLineActionOutput.hpp │ │ │ ├── HighlightBetweenBracketsActionOutput.hpp │ │ │ ├── JumpToBracketActionOutput.hpp │ │ │ ├── MoveToByteActionOutput.hpp │ │ │ ├── MoveToFileBeginActionOutput.hpp │ │ │ ├── MoveToFileEndActionOutput.hpp │ │ │ ├── MoveToLineBeginActionOutput.hpp │ │ │ ├── MoveToLineEndActionOutput.hpp │ │ │ ├── MoveToLineEndWithEditActionOutput.hpp │ │ │ ├── MoveToNextWordActionOutput.hpp │ │ │ ├── MoveToPreviousWordActionOutput.hpp │ │ │ ├── PasteActionOutput.hpp │ │ │ ├── RemoveAllActionOutput.hpp │ │ │ ├── RemoveBetweenBracketsActionOutput.hpp │ │ │ ├── RemoveBetweenWhiteCharactersActionOutput.hpp │ │ │ ├── RemoveCharacterUnderCursorActionOutput.hpp │ │ │ ├── RemoveLineActionOutput.hpp │ │ │ ├── RemoveUntilFileBeginActionOutput.hpp │ │ │ ├── RemoveUntilFileEndActionOutput.hpp │ │ │ ├── RemoveUntilLineEndActionOutput.hpp │ │ │ ├── RemoveWordBackwardActionOutput.hpp │ │ │ ├── RemoveWordForwardActionOutput.hpp │ │ │ ├── ReplaceAllActionOutput.hpp │ │ │ ├── SaveChangesActionOutput.hpp │ │ │ ├── SearchSubstringActionOutput.hpp │ │ │ ├── ShiftRightActionOutput.hpp │ │ │ ├── SkipEmptyCharactersActionOutput.hpp │ │ │ └── SwitchModeActionOutput.hpp │ ├── cache │ │ ├── Cache.hpp │ │ └── List.hpp │ ├── config │ │ ├── Config.hpp │ │ └── ReadMode.hpp │ ├── printer │ │ ├── ActionVisitor.hpp │ │ ├── ActionVisitorInterface.hpp │ │ ├── ChangesStack.hpp │ │ ├── CurrFrameVisitor.hpp │ │ ├── FilePrintingStorage.hpp │ │ ├── FrameDownVisitor.hpp │ │ ├── FrameUpVisitor.hpp │ │ ├── HalfFrameDownVisitor.hpp │ │ ├── HalfFrameUpVisitor.hpp │ │ ├── LineDownVisitor.hpp │ │ ├── LineUpVisitor.hpp │ │ ├── MemoryPrintingStorage.hpp │ │ ├── PrintingOrchestrator.hpp │ │ ├── PrintingOrchestratorInterface.hpp │ │ ├── PrintingStorageInterface.hpp │ │ ├── PrintingVisitorInterface.hpp │ │ └── WindowStatus.hpp │ ├── reader │ │ ├── ActionReader.hpp │ │ ├── KeyStroke.hpp │ │ ├── Reader.hpp │ │ └── SearchReader.hpp │ ├── utils │ │ ├── BufferFiller.hpp │ │ ├── BufferFillerInterface.hpp │ │ ├── Direction.hpp │ │ ├── FeatherMode.hpp │ │ ├── Filesystem.hpp │ │ ├── FilesystemInterface.hpp │ │ ├── FilledChunk.hpp │ │ ├── MoveCursorOnScreenStateMachine.hpp │ │ ├── NCursesWrapper.hpp │ │ ├── NtpClient.hpp │ │ ├── NtpPacket.hpp │ │ ├── ProgramOptionsParser.hpp │ │ ├── ScreenBuffer.hpp │ │ ├── Serializer.hpp │ │ ├── Utf8Util.hpp │ │ ├── algorithm │ │ │ ├── FastSearch.hpp │ │ │ ├── RegexSearch.hpp │ │ │ ├── SearchBuffer.hpp │ │ │ ├── SearchBufferEntry.hpp │ │ │ ├── SearchEngine.hpp │ │ │ ├── SearchEngineBase.hpp │ │ │ ├── SearchResultsController.hpp │ │ │ └── SearchZooKeeper.hpp │ │ ├── datatypes │ │ │ ├── ChangePOD.hpp │ │ │ ├── ChangeType.hpp │ │ │ ├── ChangesArchive.hpp │ │ │ ├── Colors.hpp │ │ │ ├── ColorsArchive.hpp │ │ │ ├── Command.hpp │ │ │ ├── DeletionsArchive.hpp │ │ │ ├── DeletionsSnapshot.hpp │ │ │ ├── DeserializedChangesArchive.hpp │ │ │ ├── DeserializedColorsArchive.hpp │ │ │ ├── DeserializedDeletionsArchive.hpp │ │ │ ├── Error.hpp │ │ │ ├── FileErrors.hpp │ │ │ ├── Global.hpp │ │ │ ├── Hash.hpp │ │ │ ├── Metadata.hpp │ │ │ ├── Strings.hpp │ │ │ ├── Uuid.hpp │ │ │ └── UuidHash.hpp │ │ ├── exception │ │ │ ├── FeatherBaseException.hpp │ │ │ ├── FeatherCacheFullException.hpp │ │ │ ├── FeatherCacheMissException.hpp │ │ │ ├── FeatherFileConcurrentlyModifiedException.hpp │ │ │ ├── FeatherFileNotExistException.hpp │ │ │ ├── FeatherInterruptedException.hpp │ │ │ ├── FeatherInvalidArgumnetException.hpp │ │ │ ├── FeatherLogicalException.hpp │ │ │ ├── FeatherMemoryException.hpp │ │ │ ├── FeatherPermissionsException.hpp │ │ │ ├── FeatherRuntimeException.hpp │ │ │ └── FeatherTimeoutException.hpp │ │ ├── helpers │ │ │ ├── Conversion.hpp │ │ │ ├── KeyReader.hpp │ │ │ ├── Lambda.hpp │ │ │ ├── RawCharactersBuffer.hpp │ │ │ └── Signal.hpp │ │ ├── logger │ │ │ ├── LogSeverity.hpp │ │ │ ├── Logger.hpp │ │ │ └── policy │ │ │ │ ├── FileLogPolicy.hpp │ │ │ │ ├── MemoryLogPolicy.hpp │ │ │ │ └── OutputDeviceLogPolicy.hpp │ │ ├── storage │ │ │ ├── AbstractStorage.hpp │ │ │ ├── AbstractStorageFactory.hpp │ │ │ ├── FileStorage.hpp │ │ │ ├── FileStorageFactory.hpp │ │ │ ├── InMemoryStorage.hpp │ │ │ └── InMemoryStorageFactory.hpp │ │ └── windows │ │ │ ├── FramePositions.hpp │ │ │ ├── LinesAroundPositionInformation.hpp │ │ │ ├── WindowInformationInterface.hpp │ │ │ ├── WindowInformationVisitorInterface.hpp │ │ │ ├── WindowLinesLengthInformationVisitor.hpp │ │ │ └── WindowStateContainer.hpp │ └── windows │ │ ├── MainWindowInterface.hpp │ │ ├── NCursesAgreementWindowDecorator.hpp │ │ ├── NCursesBottomBarWindowDecorator.hpp │ │ ├── NCursesExitWindowDecorator.hpp │ │ ├── NCursesInfoWindowDecorator.hpp │ │ ├── NCursesMainWindowDecorator.hpp │ │ ├── NCursesProgressWindowDecorator.hpp │ │ ├── NCursesShortcutsWindowDecorator.hpp │ │ ├── NCursesTopWindowDecorator.hpp │ │ ├── NCursesWindow.hpp │ │ ├── NCursesWindowsFactory.hpp │ │ ├── SubWindowInterface.hpp │ │ ├── WindowImplInterface.hpp │ │ ├── WindowsAbstarctFactoryDummy.hpp │ │ ├── WindowsAbstractFactory.hpp │ │ ├── WindowsManager.hpp │ │ └── WindowsManagerDummy.hpp ├── lib │ ├── .DS_Store │ ├── cereal │ │ ├── access.hpp │ │ ├── archives │ │ │ ├── adapters.hpp │ │ │ ├── binary.hpp │ │ │ ├── json.hpp │ │ │ ├── portable_binary.hpp │ │ │ └── xml.hpp │ │ ├── cereal.hpp │ │ ├── details │ │ │ ├── helpers.hpp │ │ │ ├── polymorphic_impl.hpp │ │ │ ├── polymorphic_impl_fwd.hpp │ │ │ ├── static_object.hpp │ │ │ ├── traits.hpp │ │ │ └── util.hpp │ │ ├── external │ │ │ ├── LICENSE │ │ │ ├── base64.hpp │ │ │ ├── rapidjson │ │ │ │ ├── LICENSE │ │ │ │ ├── allocators.h │ │ │ │ ├── cursorstreamwrapper.h │ │ │ │ ├── document.h │ │ │ │ ├── encodedstream.h │ │ │ │ ├── encodings.h │ │ │ │ ├── error │ │ │ │ │ ├── en.h │ │ │ │ │ └── error.h │ │ │ │ ├── filereadstream.h │ │ │ │ ├── filewritestream.h │ │ │ │ ├── fwd.h │ │ │ │ ├── internal │ │ │ │ │ ├── biginteger.h │ │ │ │ │ ├── diyfp.h │ │ │ │ │ ├── dtoa.h │ │ │ │ │ ├── ieee754.h │ │ │ │ │ ├── itoa.h │ │ │ │ │ ├── meta.h │ │ │ │ │ ├── pow10.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── strfunc.h │ │ │ │ │ ├── strtod.h │ │ │ │ │ └── swap.h │ │ │ │ ├── istreamwrapper.h │ │ │ │ ├── memorybuffer.h │ │ │ │ ├── memorystream.h │ │ │ │ ├── msinttypes │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── inttypes.h │ │ │ │ │ └── stdint.h │ │ │ │ ├── ostreamwrapper.h │ │ │ │ ├── pointer.h │ │ │ │ ├── prettywriter.h │ │ │ │ ├── rapidjson.h │ │ │ │ ├── reader.h │ │ │ │ ├── schema.h │ │ │ │ ├── stream.h │ │ │ │ ├── stringbuffer.h │ │ │ │ └── writer.h │ │ │ └── rapidxml │ │ │ │ ├── license.txt │ │ │ │ ├── manual.html │ │ │ │ ├── rapidxml.hpp │ │ │ │ ├── rapidxml_iterators.hpp │ │ │ │ ├── rapidxml_print.hpp │ │ │ │ └── rapidxml_utils.hpp │ │ ├── macros.hpp │ │ ├── specialize.hpp │ │ ├── types │ │ │ ├── array.hpp │ │ │ ├── atomic.hpp │ │ │ ├── base_class.hpp │ │ │ ├── bitset.hpp │ │ │ ├── boost_variant.hpp │ │ │ ├── chrono.hpp │ │ │ ├── common.hpp │ │ │ ├── complex.hpp │ │ │ ├── concepts │ │ │ │ └── pair_associative_container.hpp │ │ │ ├── deque.hpp │ │ │ ├── forward_list.hpp │ │ │ ├── functional.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── memory.hpp │ │ │ ├── optional.hpp │ │ │ ├── polymorphic.hpp │ │ │ ├── queue.hpp │ │ │ ├── set.hpp │ │ │ ├── stack.hpp │ │ │ ├── string.hpp │ │ │ ├── tuple.hpp │ │ │ ├── unordered_map.hpp │ │ │ ├── unordered_set.hpp │ │ │ ├── utility.hpp │ │ │ ├── valarray.hpp │ │ │ ├── variant.hpp │ │ │ └── vector.hpp │ │ └── version.hpp │ ├── encryption │ │ ├── arithmetic.hpp │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ └── div_base.hpp │ │ │ ├── div.hpp │ │ │ ├── inc.hpp │ │ │ ├── mod.hpp │ │ │ ├── mul.hpp │ │ │ └── sub.hpp │ │ ├── array.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── detail │ │ │ │ └── get_data.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── assert_msg.hpp │ │ ├── boost_config │ │ │ ├── config.hpp │ │ │ └── limits.hpp │ │ ├── cat.hpp │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── comparison.hpp │ │ ├── comparison │ │ │ ├── equal.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ └── not_equal.hpp │ │ ├── control.hpp │ │ ├── control │ │ │ ├── deduce_d.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug.hpp │ │ ├── debug │ │ │ ├── assert.hpp │ │ │ ├── error.hpp │ │ │ └── line.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ ├── is_nullary.hpp │ │ │ ├── is_unary.hpp │ │ │ ├── null.hpp │ │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expand.hpp │ │ ├── expr_if.hpp │ │ ├── facilities.hpp │ │ ├── facilities │ │ │ ├── apply.hpp │ │ │ ├── detail │ │ │ │ └── is_empty.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── intercept.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_empty_or_1.hpp │ │ │ ├── is_empty_variadic.hpp │ │ │ └── overload.hpp │ │ ├── for.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── library.hpp │ │ ├── limits.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── append.hpp │ │ │ ├── at.hpp │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_seq.hpp │ │ │ ├── to_tuple.hpp │ │ │ └── transform.hpp │ │ ├── logical.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitnor.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── compl.hpp │ │ │ ├── nor.hpp │ │ │ ├── not.hpp │ │ │ ├── or.hpp │ │ │ └── xor.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── punctuation.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── detail │ │ │ │ └── is_begin_parens.hpp │ │ │ ├── is_begin_parens.hpp │ │ │ ├── paren.hpp │ │ │ ├── paren_if.hpp │ │ │ └── remove_parens.hpp │ │ ├── repeat.hpp │ │ ├── repeat_2nd.hpp │ │ ├── repeat_3rd.hpp │ │ ├── repeat_from_to.hpp │ │ ├── repeat_from_to_2nd.hpp │ │ ├── repeat_from_to_3rd.hpp │ │ ├── repetition.hpp │ │ ├── repetition │ │ │ ├── deduce_r.hpp │ │ │ ├── deduce_z.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ └── for.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_binary_params.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── enum_trailing.hpp │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ ├── enum_trailing_params.hpp │ │ │ ├── for.hpp │ │ │ ├── repeat.hpp │ │ │ └── repeat_from_to.hpp │ │ ├── selection.hpp │ │ ├── selection │ │ │ ├── max.hpp │ │ │ └── min.hpp │ │ ├── seq.hpp │ │ ├── seq │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── binary_transform.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── split.hpp │ │ │ │ └── to_list_msvc.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── seq.hpp │ │ │ ├── size.hpp │ │ │ ├── subseq.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_tuple.hpp │ │ │ ├── transform.hpp │ │ │ └── variadic_seq_to_seq.hpp │ │ ├── slot.hpp │ │ ├── slot │ │ │ ├── counter.hpp │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── rem.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ └── to_seq.hpp │ │ ├── variadic.hpp │ │ ├── variadic │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── elem.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── while.hpp │ │ └── wstringize.hpp │ ├── googlemock │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── CTestTestfile.cmake │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake_install.cmake │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── DesignDoc.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ ├── KnownIssues.md │ │ │ ├── v1_5 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── v1_6 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ └── v1_7 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ ├── gtest │ │ │ ├── CTestTestfile.cmake │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── libgtest.dylib │ │ │ ├── libgtest.so │ │ │ ├── libgtest_main.dylib │ │ │ └── libgtest_main.so │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ └── gmock-port.h │ │ ├── libgmock.dylib │ │ ├── libgmock_main.dylib │ │ ├── libgmock_main.so │ │ ├── msvc │ │ │ ├── 2005 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcproj │ │ │ │ ├── gmock_config.vsprops │ │ │ │ ├── gmock_main.vcproj │ │ │ │ └── gmock_test.vcproj │ │ │ ├── 2010 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ │ └── 2015 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ ├── scripts │ │ │ ├── fuse_gmock_files.py │ │ │ ├── generator │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.cppclean │ │ │ │ ├── cpp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ └── utils.py │ │ │ │ └── gmock_gen.py │ │ │ ├── gmock-config.in │ │ │ ├── gmock_doctor.py │ │ │ ├── upload.py │ │ │ └── upload_gmock.py │ │ └── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ ├── googletest │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── cmake_install.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── AdvancedGuide.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── Samples.md │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ ├── V1_5_Documentation.md │ │ │ ├── V1_5_FAQ.md │ │ │ ├── V1_5_Primer.md │ │ │ ├── V1_5_PumpManual.md │ │ │ ├── V1_5_XcodeGuide.md │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ ├── V1_6_Documentation.md │ │ │ ├── V1_6_FAQ.md │ │ │ ├── V1_6_Primer.md │ │ │ ├── V1_6_PumpManual.md │ │ │ ├── V1_6_Samples.md │ │ │ ├── V1_6_XcodeGuide.md │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ ├── V1_7_Documentation.md │ │ │ ├── V1_7_FAQ.md │ │ │ ├── V1_7_Primer.md │ │ │ ├── V1_7_PumpManual.md │ │ │ ├── V1_7_Samples.md │ │ │ ├── V1_7_XcodeGuide.md │ │ │ └── XcodeGuide.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── libgtest_main.so │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── gtest.m4 │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── common.py │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ ├── release_docs.py │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ └── rapidjson │ │ ├── allocators.h │ │ ├── cursorstreamwrapper.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── clzll.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h ├── logo │ ├── 128x128 │ │ └── apps │ │ │ └── feather.png │ ├── 16x16 │ │ └── apps │ │ │ └── feather.png │ ├── 22x22 │ │ └── apps │ │ │ └── feather.png │ ├── 24x24 │ │ └── apps │ │ │ └── feather.png │ ├── 256x256 │ │ └── apps │ │ │ └── feather.png │ ├── 32x32 │ │ └── apps │ │ │ └── feather.png │ ├── 36x36 │ │ └── apps │ │ │ └── feather.png │ ├── 48x48 │ │ └── apps │ │ │ └── feather.png │ ├── 512x512 │ │ └── apps │ │ │ └── feather.png │ ├── 64x64 │ │ └── apps │ │ │ └── feather.png │ ├── 72x72 │ │ └── apps │ │ │ └── feather.png │ ├── 96x96 │ │ └── apps │ │ │ └── feather.png │ └── feather.png ├── makefile ├── scripts │ └── run_tests.sh ├── src │ ├── action │ │ ├── Action.cpp │ │ ├── ActionHandler.cpp │ │ ├── AlignToMiddleOfScreenAction.cpp │ │ ├── CopyLineAction.cpp │ │ ├── CutAction.cpp │ │ ├── EditLineAboveAction.cpp │ │ ├── EditLineBelowAction.cpp │ │ ├── EditNextCharacterAction.cpp │ │ ├── GetStringsAction.cpp │ │ ├── GotoLineAction.cpp │ │ ├── HighlightBetweenBracketsAction.cpp │ │ ├── JumpToBracketAction.cpp │ │ ├── MoveToByteAction.cpp │ │ ├── MoveToFileBeginAction.cpp │ │ ├── MoveToFileEndAction.cpp │ │ ├── MoveToLineBeginAction.cpp │ │ ├── MoveToLineEndAction.cpp │ │ ├── MoveToLineEndWithEditAction.cpp │ │ ├── MoveToNextWordAction.cpp │ │ ├── MoveToPreviousWordAction.cpp │ │ ├── PasteAction.cpp │ │ ├── RemoveAllAction.cpp │ │ ├── RemoveBetweenBracketsAction.cpp │ │ ├── RemoveBetweenWhiteCharactersAction.cpp │ │ ├── RemoveCharacterUnderCursorAction.cpp │ │ ├── RemoveLineAction.cpp │ │ ├── RemoveUntilFileBeginAction.cpp │ │ ├── RemoveUntilFileEndAction.cpp │ │ ├── RemoveUntilLineEndAction.cpp │ │ ├── RemoveWordBackwardAction.cpp │ │ ├── RemoveWordForwardAction.cpp │ │ ├── ReplaceAllAction.cpp │ │ ├── SaveChangesAction.cpp │ │ ├── SearchSubstringAction.cpp │ │ ├── ShiftRightAction.cpp │ │ ├── SkipEmptyCharactersAction.cpp │ │ ├── SwitchModeAction.cpp │ │ ├── input │ │ │ ├── AlignToMiddleOfScreenActionInput.cpp │ │ │ ├── CopyLineActionInput.cpp │ │ │ ├── CutActionInput.cpp │ │ │ ├── EditLineAboveActionInput.cpp │ │ │ ├── EditLineBelowActionInput.cpp │ │ │ ├── EditNextCharacterActionInput.cpp │ │ │ ├── GetStringsActionInput.cpp │ │ │ ├── GotoLineActionInput.cpp │ │ │ ├── HighlightBetweenBracketsActionInput.cpp │ │ │ ├── JumpToBracketActionInput.cpp │ │ │ ├── MoveToByteActionInput.cpp │ │ │ ├── MoveToFileBeginActionInput.cpp │ │ │ ├── MoveToFileEndActionInput.cpp │ │ │ ├── MoveToLineBeginActionInput.cpp │ │ │ ├── MoveToLineEndActionInput.cpp │ │ │ ├── MoveToLineEndWithEditActionInput.cpp │ │ │ ├── MoveToNextWordActionInput.cpp │ │ │ ├── MoveToPreviousWordActionInput.cpp │ │ │ ├── PasteActionInput.cpp │ │ │ ├── RemoveAllActionInput.cpp │ │ │ ├── RemoveBetweenBracketsActionInput.cpp │ │ │ ├── RemoveBetweenWhiteCharactersActionInput.cpp │ │ │ ├── RemoveCharacterUnderCursorActionInput.cpp │ │ │ ├── RemoveLineActionInput.cpp │ │ │ ├── RemoveUntilFileBeginActionInput.cpp │ │ │ ├── RemoveUntilFileEndActionInput.cpp │ │ │ ├── RemoveUntilLineEndActionInput.cpp │ │ │ ├── RemoveWordBackwardActionInput.cpp │ │ │ ├── RemoveWordForwardActionInput.cpp │ │ │ ├── ReplaceAllActionInput.cpp │ │ │ ├── SaveChangesActionInput.cpp │ │ │ ├── SearchSubstringActionInput.cpp │ │ │ ├── ShiftRightActionInput.cpp │ │ │ ├── SkipEmptyCharactersActionInput.cpp │ │ │ └── SwitchModeActionInput.cpp │ │ └── output │ │ │ ├── AlignToMiddleOfScreenActionOutput.cpp │ │ │ ├── CopyLineActionOutput.cpp │ │ │ ├── CutActionOutput.cpp │ │ │ ├── EditLineAboveActionOutput.cpp │ │ │ ├── EditLineBelowActionOutput.cpp │ │ │ ├── EditNextCharacterActionOutput.cpp │ │ │ ├── GetStringsActionOutput.cpp │ │ │ ├── GotoLineActionOutput.cpp │ │ │ ├── HighlightBetweenBracketsActionOutput.cpp │ │ │ ├── JumpToBracketActionOutput.cpp │ │ │ ├── MoveToByteActionOutput.cpp │ │ │ ├── MoveToFileBeginActionOutput.cpp │ │ │ ├── MoveToFileEndActionOutput.cpp │ │ │ ├── MoveToLineBeginActionOutput.cpp │ │ │ ├── MoveToLineEndActionOutput.cpp │ │ │ ├── MoveToLineEndWithEditActionOutput.cpp │ │ │ ├── MoveToNextWordActionOutput.cpp │ │ │ ├── MoveToPreviousWordActionOutput.cpp │ │ │ ├── PasteActionOutput.cpp │ │ │ ├── RemoveAllActionOutput.cpp │ │ │ ├── RemoveBetweenBracketsActionOutput.cpp │ │ │ ├── RemoveBetweenWhiteCharactersActionOutput.cpp │ │ │ ├── RemoveCharacterUnderCursorActionOutput.cpp │ │ │ ├── RemoveLineActionOutput.cpp │ │ │ ├── RemoveUntilFileBeginActionOutput.cpp │ │ │ ├── RemoveUntilFileEndActionOutput.cpp │ │ │ ├── RemoveUntilLineEndActionOutput.cpp │ │ │ ├── RemoveWordBackwardActionOutput.cpp │ │ │ ├── RemoveWordForwardActionOutput.cpp │ │ │ ├── ReplaceAllActionOutput.cpp │ │ │ ├── SaveChangesActionOutput.cpp │ │ │ ├── SearchSubstringActionOutput.cpp │ │ │ ├── ShiftRightActionOutput.cpp │ │ │ ├── SkipEmptyCharactersActionOutput.cpp │ │ │ └── SwitchModeActionOutput.cpp │ ├── cache │ │ ├── Cache.cpp │ │ └── List.cpp │ ├── config │ │ └── Config.cpp │ ├── feather.cpp │ ├── printer │ │ ├── ChangesStack.cpp │ │ ├── CurrFrameVisitor.cpp │ │ ├── FilePrintingStorage.cpp │ │ ├── FrameDownVisitor.cpp │ │ ├── FrameUpVisitor.cpp │ │ ├── HalfFrameDownVisitor.cpp │ │ ├── HalfFrameUpVisitor.cpp │ │ ├── LineDownVisitor.cpp │ │ ├── LineUpVisitor.cpp │ │ ├── MemoryPrintingStorage.cpp │ │ ├── PrintingOrchestrator.cpp │ │ ├── PrintingOrchestratorInterface.cpp │ │ └── WindowStatus.cpp │ ├── reader │ │ ├── ActionReader.cpp │ │ ├── KeyStroke.cpp │ │ ├── Reader.cpp │ │ └── SearchReader.cpp │ ├── utils │ │ ├── BufferFiller.cpp │ │ ├── BufferFillerInterface.cpp │ │ ├── Filesystem.cpp │ │ ├── FilesystemInterface.cpp │ │ ├── MoveCursorOnScreenStateMachine.cpp │ │ ├── NCursesWrapper.cpp │ │ ├── ProgramOptionsParser.cpp │ │ ├── ScreenBuffer.cpp │ │ ├── Serializer.cpp │ │ ├── algorithm │ │ │ ├── FastSearch.cpp │ │ │ ├── RegexSearch.cpp │ │ │ ├── SearchBuffer.cpp │ │ │ ├── SearchBufferEntry.cpp │ │ │ ├── SearchEngine.cpp │ │ │ ├── SearchEngineBase.cpp │ │ │ ├── SearchResultsController.cpp │ │ │ └── SearchZooKeeper.cpp │ │ ├── datatypes │ │ │ ├── ChangePOD.cpp │ │ │ ├── DeletionsSnapshot.cpp │ │ │ ├── Metadata.cpp │ │ │ └── Uuid.cpp │ │ ├── exception │ │ │ └── Exception.cpp │ │ ├── helpers │ │ │ ├── Conversion.cpp │ │ │ ├── KeyReader.cpp │ │ │ ├── Lambda.cpp │ │ │ ├── RawCharactersBuffer.cpp │ │ │ └── Signal.cpp │ │ ├── logger │ │ │ └── Logger.cpp │ │ ├── storage │ │ │ ├── AbstractStorage.cpp │ │ │ ├── AbstractStorageFactory.cpp │ │ │ ├── FileStorage.cpp │ │ │ ├── FileStorageFactory.cpp │ │ │ ├── InMemoryStorage.cpp │ │ │ └── InMemoryStorageFactory.cpp │ │ └── windows │ │ │ ├── FramePositions.cpp │ │ │ ├── LinesAroundPositionInformation.cpp │ │ │ └── WindowLinesLengthInformationVisitor.cpp │ └── windows │ │ ├── MainWindowInterface.cpp │ │ ├── NCursesAgreementWindowDecorator.cpp │ │ ├── NCursesBottomBarWindowDecorator.cpp │ │ ├── NCursesExitWindowDecorator.cpp │ │ ├── NCursesInfoWindowDecorator.cpp │ │ ├── NCursesMainWindowDecorator.cpp │ │ ├── NCursesProgressWindowDecorator.cpp │ │ ├── NCursesShortcutsWindowDecorator.cpp │ │ ├── NCursesTopWindowDecorator.cpp │ │ ├── NCursesWindow.cpp │ │ ├── NCursesWindowsFactory.cpp │ │ ├── SubWindowInterface.cpp │ │ ├── WindowImplInterface.cpp │ │ ├── WindowsAbstractFactory.cpp │ │ └── WindowsManager.cpp └── tst │ ├── integ │ ├── BufferFillerIntegTest.cpp │ ├── CopyLineActionIntegTest.cpp │ ├── EditLineBelowActionIntegTest.cpp │ ├── EditNextCharacterActionIntegTest.cpp │ ├── FastSearchIntegTest.cpp │ ├── JumpToBracketActionIntegTest.cpp │ ├── LambdaIntegTest.cpp │ ├── MoveToByteActionIntegTest.cpp │ ├── MoveToLineEndActionIntegTest.cpp │ ├── MoveToLineEndWithEditActionIntegTest.cpp │ ├── MoveToNextWordActionIntegTest.cpp │ ├── NCursesMainWindowDecoratorIntegTest.cpp │ ├── PasteActionIntegTest.cpp │ ├── PrintingOrchestartorIntegTest.cpp │ ├── RemoveBetweenWhiteCharactersActionIntegTest.cpp │ ├── RemoveCharacterUnderCursorActionIntegTest.cpp │ ├── RemoveLineActionIntegTest.cpp │ ├── RemoveUntilLineEndActionIntegTest.cpp │ ├── RemoveWordBackwardActionIntegTest.cpp │ ├── RemoveWordForwardActionIntegTest.cpp │ ├── SaveChangesActionIntegTest.cpp │ ├── SearchBufferIntegTest.cpp │ ├── SerializerIntegTest.cpp │ └── SwitchModeActionIntegTest.cpp │ └── ut │ ├── action │ ├── ActionHandlerTest.cpp │ ├── MoveToByteActionTest.cpp │ ├── MoveToFileEndActionTest.cpp │ ├── MoveToNextWordActionTest.cpp │ ├── MoveToPreviousWordActionTest.cpp │ ├── RemoveCharacterUnderCursorActionTest.cpp │ ├── RemoveLineActionTest.cpp │ └── SaveChangesActionTest.cpp │ ├── cache │ └── CacheTest.cpp │ ├── config │ └── ConfigTest.cpp │ ├── helpers │ ├── FileStorageHelper.cpp │ ├── FileStorageHelper.hpp │ ├── TestBase.cpp │ ├── TestBase.hpp │ ├── Timeout.cpp │ ├── Timeout.hpp │ ├── feather.log │ ├── featherConfig.json │ ├── improperFeatherConfig.json │ ├── partialFeatherConfig.json │ ├── testfiles │ │ ├── 1111222233334444 │ │ │ └── 2_IS_17573869185184923612.fea │ │ ├── 1_IS_17573869185184923612.fea │ │ ├── 220097a9-67fc-4110-b92e-c60227359c68 │ │ │ ├── 1_IS_17573869185184923612.fea │ │ │ └── 2_IS_17573869185184923612.fea │ │ ├── 2222333344445555 │ │ │ └── SS_17573869185184923612.fea │ │ ├── 2_IS_17573869185184923612.fea │ │ ├── IS_x6fx62x6a.fea │ │ ├── Utf8TestFile │ │ ├── Utf8TestFile_2 │ │ ├── aaabbbcccddd │ │ │ ├── 1_IS_17573869185184923612.fea │ │ │ ├── 2_IS_17573869185184923612.fea │ │ │ └── SS_17573869185184923612.fea │ │ ├── changes4NewCharacters │ │ ├── changesWithNewLine │ │ ├── emptyFile │ │ ├── fileWrapperTestFile │ │ ├── searchResultSingleLine │ │ ├── searchResultTwoLinesSecondarySearch │ │ ├── searchResultsMultipleLines │ │ ├── searchResultsMultipleLinesInitialSearch │ │ ├── testFile_01_07_2018 │ │ ├── testFile_06_10_2018 │ │ ├── testFile_09_09_2018 │ │ ├── testFile_10_02_2019 │ │ ├── testFile_11_02_2019 │ │ ├── testFile_11_08_2018 │ │ ├── testFile_11_10_2018 │ │ ├── testFile_15_09_2018 │ │ ├── testFile_16_02_2019 │ │ ├── testFile_22_06_2019 │ │ ├── testFile_23_11_2018 │ │ └── testFile_24_09_2018 │ ├── ut │ └── wrongDataTypesFeatherConfig.json │ ├── mocks │ ├── BufferFillerMock.hpp │ ├── ChangesStackMock.hpp │ ├── ConfigurationMock.hpp │ ├── FileLogPolicyMock.hpp │ ├── FilesystemMock.hpp │ ├── NCursesBottomBarWindowDecoratorMock.hpp │ ├── NCursesMainWindowDecoratorMock.hpp │ ├── NCursesProgressWindowDecoratorMock.hpp │ ├── NCursesWindowMock.hpp │ ├── NCursesWrapperMock.hpp │ ├── PrintingOrchestratorMock.hpp │ ├── PrintingStorageMock.hpp │ ├── PrintingVisitorMock.hpp │ ├── StorageMock.hpp │ ├── WindowsFactoryMock.hpp │ └── WindowsManagerMock.hpp │ ├── printer │ ├── ChangesStackTest.cpp │ ├── FilePrintingStorageTest.cpp │ ├── PrintingOrchestratorTest.cpp │ └── WindowStatusTest.cpp │ ├── reader │ └── KeyStrokeTest.cpp │ ├── threadpool │ └── ThreadPoolTest.cpp │ ├── utils │ ├── MoveCursorOnScreenStateMachineTest.cpp │ ├── NCursesWrapperTest.cpp │ ├── ProgramOptionsParserTest.cpp │ ├── ScreenBufferTest.cpp │ ├── Utf8UtilTest.cpp │ ├── algorithm │ │ ├── RegexSearchTest.cpp │ │ ├── SearchResultsControllerTest.cpp │ │ └── SearchZooKeeperTest.cpp │ ├── helpers │ │ └── ConversionTest.cpp │ ├── logger │ │ └── policy │ │ │ └── FileLogPolicyTest.cpp │ ├── storage │ │ └── FileStorageTest.cpp │ └── windows │ │ ├── FramePositionsTest.cpp │ │ └── WindowLinesAroundPositionInformationVisitorTest.cpp │ └── windows │ ├── NCursesBottomBarWindowDecoratorTest.cpp │ ├── NCursesMainWindowDecoratorTest.cpp │ ├── NCursesWindowTest.cpp │ ├── NCursesWindowsFactoryTest.cpp │ └── WindowsManagerTest.cpp └── rpmbuild └── SPECS ├── arm.spec └── x86.spec /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/README.md -------------------------------------------------------------------------------- /debian/control/control-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/control/control-amd64 -------------------------------------------------------------------------------- /debian/control/control-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/control/control-arm64 -------------------------------------------------------------------------------- /debian/feather-1.0-1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/.DS_Store -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/.debhelper/feather/dbgsym-build-ids: -------------------------------------------------------------------------------- 1 | 504a193bd491121ec1e0275b886d7ed6af8160d0 -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/.debhelper/generated/feather/installed-by-dh_installdocs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/.debhelper/generated/feather/installed-by-dh_installman: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/changelog -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/control -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/control-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/control-amd64 -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/debhelper-build-stamp: -------------------------------------------------------------------------------- 1 | feather 2 | -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/feather.debhelper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/feather.debhelper.log -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/feather.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/feather.desktop -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/feather.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/feather.substvars -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/feather/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/feather/DEBIAN/control -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/feather/DEBIAN/md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/feather/DEBIAN/md5sums -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/feather/usr/bin/feather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/feather/usr/bin/feather -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/files -------------------------------------------------------------------------------- /debian/feather-1.0-1/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/debian/rules -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/128x128/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/128x128/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/16x16/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/16x16/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/22x22/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/22x22/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/24x24/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/24x24/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/256x256/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/256x256/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/32x32/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/32x32/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/36x36/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/36x36/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/48x48/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/48x48/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/512x512/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/512x512/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/64x64/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/64x64/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/72x72/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/72x72/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/96x96/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/96x96/apps/feather.png -------------------------------------------------------------------------------- /debian/feather-1.0-1/logo/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/feather-1.0-1/logo/feather.png -------------------------------------------------------------------------------- /debian/rules/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/debian/rules/rules -------------------------------------------------------------------------------- /feather-1.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/.DS_Store -------------------------------------------------------------------------------- /feather-1.0/feather.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/feather.1 -------------------------------------------------------------------------------- /feather-1.0/featherConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/featherConfig.json -------------------------------------------------------------------------------- /feather-1.0/hdr/action/Action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/Action.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/ActionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/ActionHandler.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/ActionType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/ActionType.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/CopyLineAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/CopyLineAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/CutAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/CutAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/EditLineAboveAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/EditLineAboveAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/EditLineBelowAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/EditLineBelowAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/EditNextCharacterAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/EditNextCharacterAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/GetStringsAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/GetStringsAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/GotoLineAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/GotoLineAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/JumpToBracketAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/JumpToBracketAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/MoveToByteAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/MoveToByteAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/MoveToFileBeginAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/MoveToFileBeginAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/MoveToFileEndAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/MoveToFileEndAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/MoveToLineBeginAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/MoveToLineBeginAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/MoveToLineEndAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/MoveToLineEndAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/MoveToNextWordAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/MoveToNextWordAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/MoveToPreviousWordAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/MoveToPreviousWordAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/PasteAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/PasteAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/RemoveAllAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/RemoveAllAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/RemoveLineAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/RemoveLineAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/RemoveUntilFileBeginAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/RemoveUntilFileBeginAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/RemoveUntilFileEndAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/RemoveUntilFileEndAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/RemoveUntilLineEndAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/RemoveUntilLineEndAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/RemoveWordBackwardAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/RemoveWordBackwardAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/RemoveWordForwardAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/RemoveWordForwardAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/ReplaceAllAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/ReplaceAllAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/SaveChangesAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/SaveChangesAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/SearchSubstringAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/SearchSubstringAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/ShiftRightAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/ShiftRightAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/SkipEmptyCharactersAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/SkipEmptyCharactersAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/SwitchModeAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/SwitchModeAction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/input/CopyLineActionInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/input/CopyLineActionInput.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/input/CutActionInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/input/CutActionInput.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/input/GotoLineActionInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/input/GotoLineActionInput.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/input/PasteActionInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/input/PasteActionInput.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/input/RemoveAllActionInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/input/RemoveAllActionInput.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/output/CutActionOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/output/CutActionOutput.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/action/output/PasteActionOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/action/output/PasteActionOutput.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/cache/Cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/cache/Cache.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/cache/List.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/cache/List.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/config/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/config/Config.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/config/ReadMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/config/ReadMode.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/ActionVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/ActionVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/ActionVisitorInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/ActionVisitorInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/ChangesStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/ChangesStack.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/CurrFrameVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/CurrFrameVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/FilePrintingStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/FilePrintingStorage.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/FrameDownVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/FrameDownVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/FrameUpVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/FrameUpVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/HalfFrameDownVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/HalfFrameDownVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/HalfFrameUpVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/HalfFrameUpVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/LineDownVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/LineDownVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/LineUpVisitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/LineUpVisitor.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/MemoryPrintingStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/MemoryPrintingStorage.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/PrintingOrchestrator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/PrintingOrchestrator.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/PrintingStorageInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/PrintingStorageInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/PrintingVisitorInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/PrintingVisitorInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/printer/WindowStatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/printer/WindowStatus.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/reader/ActionReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/reader/ActionReader.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/reader/KeyStroke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/reader/KeyStroke.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/reader/Reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/reader/Reader.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/reader/SearchReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/reader/SearchReader.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/BufferFiller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/BufferFiller.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/BufferFillerInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/BufferFillerInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/Direction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/Direction.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/FeatherMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/FeatherMode.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/Filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/Filesystem.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/FilesystemInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/FilesystemInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/FilledChunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/FilledChunk.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/NCursesWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/NCursesWrapper.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/NtpClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/NtpClient.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/NtpPacket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/NtpPacket.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/ProgramOptionsParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/ProgramOptionsParser.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/ScreenBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/ScreenBuffer.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/Serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/Serializer.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/Utf8Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/Utf8Util.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/algorithm/FastSearch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/algorithm/FastSearch.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/algorithm/RegexSearch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/algorithm/RegexSearch.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/algorithm/SearchBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/algorithm/SearchBuffer.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/algorithm/SearchBufferEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/algorithm/SearchBufferEntry.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/algorithm/SearchEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/algorithm/SearchEngine.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/algorithm/SearchEngineBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/algorithm/SearchEngineBase.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/algorithm/SearchZooKeeper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/algorithm/SearchZooKeeper.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/ChangePOD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/ChangePOD.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/ChangeType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/ChangeType.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/ChangesArchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/ChangesArchive.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Colors.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/ColorsArchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/ColorsArchive.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Command.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/DeletionsArchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/DeletionsArchive.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/DeletionsSnapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/DeletionsSnapshot.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Error.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/FileErrors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/FileErrors.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Global.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Hash.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Metadata.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Strings.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/Uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/Uuid.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/datatypes/UuidHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/datatypes/UuidHash.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/helpers/Conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/helpers/Conversion.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/helpers/KeyReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/helpers/KeyReader.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/helpers/Lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/helpers/Lambda.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/helpers/RawCharactersBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/helpers/RawCharactersBuffer.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/helpers/Signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/helpers/Signal.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/logger/LogSeverity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/logger/LogSeverity.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/logger/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/logger/Logger.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/logger/policy/FileLogPolicy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/logger/policy/FileLogPolicy.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/storage/AbstractStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/storage/AbstractStorage.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/storage/FileStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/storage/FileStorage.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/storage/FileStorageFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/storage/FileStorageFactory.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/storage/InMemoryStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/storage/InMemoryStorage.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/utils/windows/FramePositions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/utils/windows/FramePositions.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/MainWindowInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/MainWindowInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/NCursesTopWindowDecorator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/NCursesTopWindowDecorator.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/NCursesWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/NCursesWindow.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/NCursesWindowsFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/NCursesWindowsFactory.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/SubWindowInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/SubWindowInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/WindowImplInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/WindowImplInterface.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/WindowsAbstractFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/WindowsAbstractFactory.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/WindowsManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/WindowsManager.hpp -------------------------------------------------------------------------------- /feather-1.0/hdr/windows/WindowsManagerDummy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/hdr/windows/WindowsManagerDummy.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/.DS_Store -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/access.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/archives/adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/archives/adapters.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/archives/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/archives/binary.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/archives/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/archives/json.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/archives/portable_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/archives/portable_binary.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/archives/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/archives/xml.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/cereal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/cereal.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/details/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/details/helpers.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/details/polymorphic_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/details/polymorphic_impl.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/details/static_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/details/static_object.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/details/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/details/traits.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/details/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/details/util.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/LICENSE -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/base64.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/LICENSE -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/document.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/encodings.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/error/en.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/fwd.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/pointer.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/reader.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/schema.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/stream.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidjson/writer.h -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidxml/license.txt -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidxml/manual.html -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/external/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/external/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/macros.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/specialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/specialize.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/array.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/atomic.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/base_class.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/bitset.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/boost_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/boost_variant.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/chrono.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/common.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/complex.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/deque.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/forward_list.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/functional.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/list.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/map.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/memory.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/optional.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/polymorphic.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/queue.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/set.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/stack.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/string.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/tuple.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/unordered_map.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/unordered_set.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/utility.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/valarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/valarray.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/variant.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/types/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/types/vector.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/cereal/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/cereal/version.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic/add.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic/dec.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic/div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic/div.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic/inc.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic/mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic/mod.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic/mul.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic/mul.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/arithmetic/sub.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/data.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/detail/get_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/detail/get_data.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/elem.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/enum.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/insert.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/pop_back.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/pop_front.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/push_back.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/push_front.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/remove.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/replace.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/reverse.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/size.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/to_list.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/to_seq.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/array/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/array/to_tuple.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/assert_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/assert_msg.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/boost_config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/boost_config/config.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/boost_config/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/boost_config/limits.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/cat.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comma.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comma_if.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comparison.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comparison/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comparison/equal.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comparison/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comparison/greater.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comparison/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comparison/less.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comparison/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comparison/less_equal.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/comparison/not_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/comparison/not_equal.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control/deduce_d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control/deduce_d.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control/detail/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control/detail/while.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control/expr_if.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control/expr_iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control/expr_iif.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control/if.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control/iif.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/control/while.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/debug.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/debug/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/debug/assert.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/debug/error.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/debug/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/debug/line.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/dec.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/auto_rec.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/check.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/dmc/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/dmc/auto_rec.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/is_binary.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/is_nullary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/is_nullary.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/is_unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/is_unary.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/null.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/detail/split.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/empty.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/enum.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/enum_params.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/enum_shifted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/enum_shifted.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/enum_shifted_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/enum_shifted_params.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/expand.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/expr_if.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/apply.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/empty.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/expand.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/identity.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/intercept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/intercept.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/is_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/is_1.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/is_empty.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/facilities/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/facilities/overload.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/for.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/identity.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/if.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/inc.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iterate.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iteration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iteration.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iteration/detail/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iteration/detail/local.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iteration/detail/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iteration/detail/self.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iteration/detail/start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iteration/detail/start.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iteration/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iteration/iterate.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iteration/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iteration/local.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/iteration/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/iteration/self.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/library.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/limits.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/adt.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/append.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/at.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/cat.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/detail/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/detail/fold_left.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/detail/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/detail/fold_right.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/enum.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/filter.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/first_n.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/fold_left.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/fold_right.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/for_each.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/for_each_i.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/for_each_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/for_each_product.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/rest_n.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/reverse.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/size.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/to_array.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/to_seq.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/to_tuple.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/list/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/list/transform.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/and.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/bitand.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/bitnor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/bitnor.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/bitor.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/bitxor.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/bool.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/compl.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/nor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/nor.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/not.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/or.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/logical/xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/logical/xor.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/max.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/min.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/punctuation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/punctuation.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/punctuation/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/punctuation/comma.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/punctuation/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/punctuation/comma_if.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/punctuation/paren.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/punctuation/paren.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/punctuation/paren_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/punctuation/paren_if.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repeat.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repeat_2nd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repeat_2nd.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repeat_3rd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repeat_3rd.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repeat_from_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repeat_from_to.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repeat_from_to_2nd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repeat_from_to_2nd.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repeat_from_to_3rd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repeat_from_to_3rd.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition/deduce_r.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition/deduce_r.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition/deduce_z.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition/deduce_z.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition/detail/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition/detail/for.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition/enum.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition/enum_params.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition/for.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/repetition/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/repetition/repeat.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/selection.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/selection/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/selection/max.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/selection/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/selection/min.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/cat.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/detail/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/detail/is_empty.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/detail/split.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/elem.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/enum.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/filter.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/first_n.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/fold_left.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/fold_right.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/for_each.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/for_each_i.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/for_each_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/for_each_product.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/insert.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/pop_back.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/pop_front.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/push_back.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/push_front.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/remove.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/replace.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/rest_n.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/reverse.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/seq.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/size.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/subseq.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/to_array.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/to_list.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/to_tuple.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/seq/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/seq/transform.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/counter.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/counter.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/def.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/shared.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/slot1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/slot1.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/slot2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/slot2.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/slot3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/slot3.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/slot4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/slot4.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/detail/slot5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/detail/slot5.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/slot/slot.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/stringize.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/eat.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/elem.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/enum.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/insert.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/pop_back.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/pop_front.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/push_back.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/push_front.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/rem.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/remove.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/replace.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/reverse.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/size.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/to_array.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/to_list.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/tuple/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/tuple/to_seq.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/variadic.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/variadic/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/variadic/elem.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/variadic/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/variadic/size.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/variadic/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/variadic/to_array.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/variadic/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/variadic/to_list.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/variadic/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/variadic/to_seq.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/variadic/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/variadic/to_tuple.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/while.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/encryption/wstringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/encryption/wstringize.hpp -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/CHANGES -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/CONTRIBUTORS -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/CTestTestfile.cmake -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/LICENSE -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/Makefile -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/Makefile.am -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/README.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/cmake_install.cmake -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/configure.ac -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/CheatSheet.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/CookBook.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/DesignDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/DesignDoc.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/DevGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/ForDummies.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/KnownIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/KnownIssues.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_5/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_5/CheatSheet.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_5/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_5/CookBook.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_5/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_5/Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_5/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_5/ForDummies.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_6/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_6/CheatSheet.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_6/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_6/CookBook.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_6/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_6/Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_6/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_6/ForDummies.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_7/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_7/CheatSheet.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_7/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_7/CookBook.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_7/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_7/Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/docs/v1_7/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/docs/v1_7/ForDummies.md -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/gtest/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/gtest/CTestTestfile.cmake -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/gtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/gtest/Makefile -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/gtest/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/gtest/cmake_install.cmake -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/gtest/libgtest.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/gtest/libgtest.dylib -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/gtest/libgtest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/gtest/libgtest.so -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/gtest/libgtest_main.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/gtest/libgtest_main.dylib -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/gtest/libgtest_main.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/gtest/libgtest_main.so -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/libgmock.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/libgmock.dylib -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/libgmock_main.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/libgmock_main.dylib -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/libgmock_main.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/libgmock_main.so -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/msvc/2005/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/msvc/2005/gmock.sln -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/msvc/2005/gmock.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/msvc/2005/gmock.vcproj -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/msvc/2010/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/msvc/2010/gmock.sln -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/msvc/2010/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/msvc/2010/gmock.vcxproj -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/msvc/2015/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/msvc/2015/gmock.sln -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/msvc/2015/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/msvc/2015/gmock.vcxproj -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/scripts/generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/scripts/generator/LICENSE -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/scripts/generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/scripts/generator/README -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/scripts/gmock-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/scripts/gmock-config.in -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/scripts/gmock_doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/scripts/gmock_doctor.py -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/scripts/upload.py -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/scripts/upload_gmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/scripts/upload_gmock.py -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/CHANGES -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/LICENSE -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/Makefile -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/Makefile.am -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/README.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/cmake_install.cmake -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/configure.ac -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/AdvancedGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/DevGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/FAQ.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/Primer.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/PumpManual.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/Samples.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_5_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_5_AdvancedGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_5_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_5_Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_5_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_5_FAQ.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_5_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_5_Primer.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_5_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_5_PumpManual.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_5_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_5_XcodeGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_6_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_6_AdvancedGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_6_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_6_Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_6_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_6_FAQ.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_6_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_6_Primer.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_6_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_6_PumpManual.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_6_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_6_Samples.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_6_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_6_XcodeGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_7_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_7_AdvancedGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_7_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_7_Documentation.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_7_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_7_FAQ.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_7_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_7_Primer.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_7_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_7_PumpManual.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_7_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_7_Samples.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/V1_7_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/V1_7_XcodeGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/docs/XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/docs/XcodeGuide.md -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/libgtest_main.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/libgtest_main.so -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/m4/gtest.m4 -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/msvc/gtest.sln -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/sample1.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/sample2.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/samples/sample4.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/scripts/common.py -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/scripts/gtest-config.in -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/scripts/pump.py -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/scripts/release_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/scripts/release_docs.py -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/scripts/upload.py -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/scripts/upload_gtest.py -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /feather-1.0/lib/googletest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/googletest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/allocators.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/document.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/encodings.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/error/en.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/error/error.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/fwd.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/clzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/clzll.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/memorystream.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/pointer.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/reader.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/schema.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/stream.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /feather-1.0/lib/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/lib/rapidjson/writer.h -------------------------------------------------------------------------------- /feather-1.0/logo/128x128/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/128x128/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/16x16/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/16x16/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/22x22/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/22x22/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/24x24/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/24x24/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/256x256/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/256x256/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/32x32/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/32x32/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/36x36/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/36x36/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/48x48/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/48x48/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/512x512/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/512x512/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/64x64/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/64x64/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/72x72/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/72x72/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/96x96/apps/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/96x96/apps/feather.png -------------------------------------------------------------------------------- /feather-1.0/logo/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/logo/feather.png -------------------------------------------------------------------------------- /feather-1.0/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/makefile -------------------------------------------------------------------------------- /feather-1.0/scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/scripts/run_tests.sh -------------------------------------------------------------------------------- /feather-1.0/src/action/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/Action.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/ActionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/ActionHandler.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/CopyLineAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/CopyLineAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/CutAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/CutAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/EditLineAboveAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/EditLineAboveAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/EditLineBelowAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/EditLineBelowAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/EditNextCharacterAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/EditNextCharacterAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/GetStringsAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/GetStringsAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/GotoLineAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/GotoLineAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/JumpToBracketAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/JumpToBracketAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/MoveToByteAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/MoveToByteAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/MoveToFileBeginAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/MoveToFileBeginAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/MoveToFileEndAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/MoveToFileEndAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/MoveToLineBeginAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/MoveToLineBeginAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/MoveToLineEndAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/MoveToLineEndAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/MoveToNextWordAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/MoveToNextWordAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/MoveToPreviousWordAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/MoveToPreviousWordAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/PasteAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/PasteAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/RemoveAllAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/RemoveAllAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/RemoveLineAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/RemoveLineAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/RemoveUntilFileBeginAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/RemoveUntilFileBeginAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/RemoveUntilFileEndAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/RemoveUntilFileEndAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/RemoveUntilLineEndAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/RemoveUntilLineEndAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/RemoveWordBackwardAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/RemoveWordBackwardAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/RemoveWordForwardAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/RemoveWordForwardAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/ReplaceAllAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/ReplaceAllAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/SaveChangesAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/SaveChangesAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/SearchSubstringAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/SearchSubstringAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/ShiftRightAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/ShiftRightAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/SkipEmptyCharactersAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/SkipEmptyCharactersAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/SwitchModeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/SwitchModeAction.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/input/CopyLineActionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/input/CopyLineActionInput.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/input/CutActionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/input/CutActionInput.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/input/GotoLineActionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/input/GotoLineActionInput.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/input/PasteActionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/input/PasteActionInput.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/input/RemoveAllActionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/input/RemoveAllActionInput.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/output/CutActionOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/output/CutActionOutput.cpp -------------------------------------------------------------------------------- /feather-1.0/src/action/output/PasteActionOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/action/output/PasteActionOutput.cpp -------------------------------------------------------------------------------- /feather-1.0/src/cache/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/cache/Cache.cpp -------------------------------------------------------------------------------- /feather-1.0/src/cache/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/cache/List.cpp -------------------------------------------------------------------------------- /feather-1.0/src/config/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/config/Config.cpp -------------------------------------------------------------------------------- /feather-1.0/src/feather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/feather.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/ChangesStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/ChangesStack.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/CurrFrameVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/CurrFrameVisitor.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/FilePrintingStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/FilePrintingStorage.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/FrameDownVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/FrameDownVisitor.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/FrameUpVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/FrameUpVisitor.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/HalfFrameDownVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/HalfFrameDownVisitor.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/HalfFrameUpVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/HalfFrameUpVisitor.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/LineDownVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/LineDownVisitor.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/LineUpVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/LineUpVisitor.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/MemoryPrintingStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/MemoryPrintingStorage.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/PrintingOrchestrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/PrintingOrchestrator.cpp -------------------------------------------------------------------------------- /feather-1.0/src/printer/WindowStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/printer/WindowStatus.cpp -------------------------------------------------------------------------------- /feather-1.0/src/reader/ActionReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/reader/ActionReader.cpp -------------------------------------------------------------------------------- /feather-1.0/src/reader/KeyStroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/reader/KeyStroke.cpp -------------------------------------------------------------------------------- /feather-1.0/src/reader/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/reader/Reader.cpp -------------------------------------------------------------------------------- /feather-1.0/src/reader/SearchReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/reader/SearchReader.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/BufferFiller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/BufferFiller.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/BufferFillerInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/BufferFillerInterface.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/Filesystem.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/FilesystemInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/FilesystemInterface.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/NCursesWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/NCursesWrapper.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/ProgramOptionsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/ProgramOptionsParser.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/ScreenBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/ScreenBuffer.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/Serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/Serializer.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/algorithm/FastSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/algorithm/FastSearch.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/algorithm/RegexSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/algorithm/RegexSearch.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/algorithm/SearchBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/algorithm/SearchBuffer.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/algorithm/SearchBufferEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/algorithm/SearchBufferEntry.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/algorithm/SearchEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/algorithm/SearchEngine.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/algorithm/SearchEngineBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/algorithm/SearchEngineBase.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/algorithm/SearchZooKeeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/algorithm/SearchZooKeeper.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/datatypes/ChangePOD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/datatypes/ChangePOD.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/datatypes/DeletionsSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/datatypes/DeletionsSnapshot.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/datatypes/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/datatypes/Metadata.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/datatypes/Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/datatypes/Uuid.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/exception/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/exception/Exception.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/helpers/Conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/helpers/Conversion.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/helpers/KeyReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/helpers/KeyReader.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/helpers/Lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/helpers/Lambda.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/helpers/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/helpers/Signal.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/logger/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/logger/Logger.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/storage/AbstractStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/storage/AbstractStorage.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/storage/FileStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/storage/FileStorage.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/storage/InMemoryStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/storage/InMemoryStorage.cpp -------------------------------------------------------------------------------- /feather-1.0/src/utils/windows/FramePositions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/utils/windows/FramePositions.cpp -------------------------------------------------------------------------------- /feather-1.0/src/windows/MainWindowInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/windows/MainWindowInterface.cpp -------------------------------------------------------------------------------- /feather-1.0/src/windows/NCursesWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/windows/NCursesWindow.cpp -------------------------------------------------------------------------------- /feather-1.0/src/windows/NCursesWindowsFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/windows/NCursesWindowsFactory.cpp -------------------------------------------------------------------------------- /feather-1.0/src/windows/SubWindowInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/windows/SubWindowInterface.cpp -------------------------------------------------------------------------------- /feather-1.0/src/windows/WindowImplInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/windows/WindowImplInterface.cpp -------------------------------------------------------------------------------- /feather-1.0/src/windows/WindowsAbstractFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/windows/WindowsAbstractFactory.cpp -------------------------------------------------------------------------------- /feather-1.0/src/windows/WindowsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/src/windows/WindowsManager.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/BufferFillerIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/BufferFillerIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/CopyLineActionIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/CopyLineActionIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/FastSearchIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/FastSearchIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/LambdaIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/LambdaIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/MoveToByteActionIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/MoveToByteActionIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/PasteActionIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/PasteActionIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/RemoveLineActionIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/RemoveLineActionIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/RemoveWordForwardActionIntegTest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/integ/SearchBufferIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/SearchBufferIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/SerializerIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/SerializerIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/integ/SwitchModeActionIntegTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/integ/SwitchModeActionIntegTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/action/ActionHandlerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/action/ActionHandlerTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/action/MoveToByteActionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/action/MoveToByteActionTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/action/RemoveLineActionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/action/RemoveLineActionTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/action/SaveChangesActionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/action/SaveChangesActionTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/cache/CacheTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/cache/CacheTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/config/ConfigTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/config/ConfigTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/FileStorageHelper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/FileStorageHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/FileStorageHelper.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/TestBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/TestBase.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/TestBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/TestBase.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/Timeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/Timeout.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/Timeout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/Timeout.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/feather.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/feather.log -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/featherConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/featherConfig.json -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/1_IS_17573869185184923612.fea: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/220097a9-67fc-4110-b92e-c60227359c68/1_IS_17573869185184923612.fea: -------------------------------------------------------------------------------- 1 | 2 113 2 | 1 154 3 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/2_IS_17573869185184923612.fea: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/Utf8TestFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/testfiles/Utf8TestFile -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/Utf8TestFile_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/helpers/testfiles/Utf8TestFile_2 -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/aaabbbcccddd/1_IS_17573869185184923612.fea: -------------------------------------------------------------------------------- 1 | 1 154 2 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/aaabbbcccddd/2_IS_17573869185184923612.fea: -------------------------------------------------------------------------------- 1 | 1 3365 2 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/aaabbbcccddd/SS_17573869185184923612.fea: -------------------------------------------------------------------------------- 1 | 1 154:3 2 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/changes4NewCharacters: -------------------------------------------------------------------------------- 1 | abcd 2 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/changesWithNewLine: -------------------------------------------------------------------------------- 1 | ab 2 | cd 3 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/emptyFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/fileWrapperTestFile: -------------------------------------------------------------------------------- 1 | test 2 | x 3 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/searchResultSingleLine: -------------------------------------------------------------------------------- 1 | 1 1986:24 2 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/searchResultTwoLinesSecondarySearch: -------------------------------------------------------------------------------- 1 | 1 1986:24 2 | 2 2000:22 -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/searchResultsMultipleLines: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_01_07_2018: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_09_09_2018: -------------------------------------------------------------------------------- 1 | ab 2 | bc 3 | cd 4 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_10_02_2019: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_11_02_2019: -------------------------------------------------------------------------------- 1 | abcd 2 | efij 3 | kl 4 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_15_09_2018: -------------------------------------------------------------------------------- 1 | 123456 2 | 789000 3 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_16_02_2019: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_22_06_2019: -------------------------------------------------------------------------------- 1 | 123 2 | 3 | 456 4 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/testfiles/testFile_23_11_2018: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/helpers/ut: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/BufferFillerMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/BufferFillerMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/ChangesStackMock.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/ConfigurationMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/ConfigurationMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/FileLogPolicyMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/FileLogPolicyMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/FilesystemMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/FilesystemMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/NCursesWindowMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/NCursesWindowMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/NCursesWrapperMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/NCursesWrapperMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/PrintingStorageMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/PrintingStorageMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/PrintingVisitorMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/PrintingVisitorMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/StorageMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/StorageMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/WindowsFactoryMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/WindowsFactoryMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/mocks/WindowsManagerMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/mocks/WindowsManagerMock.hpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/printer/ChangesStackTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/printer/ChangesStackTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/printer/WindowStatusTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/printer/WindowStatusTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/reader/KeyStrokeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/reader/KeyStrokeTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/threadpool/ThreadPoolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/threadpool/ThreadPoolTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/utils/NCursesWrapperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/utils/NCursesWrapperTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/utils/ScreenBufferTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/utils/ScreenBufferTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/utils/Utf8UtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/utils/Utf8UtilTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/utils/helpers/ConversionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/utils/helpers/ConversionTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/windows/NCursesWindowTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/windows/NCursesWindowTest.cpp -------------------------------------------------------------------------------- /feather-1.0/tst/ut/windows/WindowsManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/feather-1.0/tst/ut/windows/WindowsManagerTest.cpp -------------------------------------------------------------------------------- /rpmbuild/SPECS/arm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/rpmbuild/SPECS/arm.spec -------------------------------------------------------------------------------- /rpmbuild/SPECS/x86.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBaca/FeatherEditor/HEAD/rpmbuild/SPECS/x86.spec --------------------------------------------------------------------------------