├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── ChangeLog ├── LICENSE ├── README.md ├── UseBCapi.cmake ├── appveyor.yml ├── doc ├── DescriptionParams.md ├── DescriptionSchema.md └── DevelopersGuide.md ├── examples ├── CMakeLists.txt ├── api_include │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── Example │ │ │ ├── CMakeLists.txt │ │ │ ├── api_include.xml │ │ │ ├── api_include_params.xml │ │ │ └── source │ │ │ │ ├── ExistingImpl.cpp │ │ │ │ └── ExistingImpl.h │ │ └── Included │ │ │ ├── CMakeLists.txt │ │ │ ├── included.xml │ │ │ ├── included_params.xml │ │ │ └── source │ │ │ ├── IncludedImpl.cpp │ │ │ └── IncludedImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Program.cs ├── boost_shared_ptr │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── boost_shared_ptr.xml │ │ ├── boost_shared_ptr_params.xml │ │ └── source │ │ ├── PrinterImpl.cpp │ │ └── PrinterImpl.h ├── callback │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── callback.xml │ │ ├── callback_params.xml │ │ └── source │ │ │ ├── DefaultPrinterImpl.cpp │ │ │ ├── DefaultPrinterImpl.h │ │ │ ├── Exception │ │ │ ├── BadArgumentImpl.cpp │ │ │ ├── BadArgumentImpl.h │ │ │ ├── DivisionByZeroImpl.cpp │ │ │ ├── DivisionByZeroImpl.h │ │ │ ├── GenericImpl.cpp │ │ │ ├── GenericImpl.h │ │ │ ├── NullArgumentImpl.cpp │ │ │ └── NullArgumentImpl.h │ │ │ ├── IPrinter.h │ │ │ ├── PersonImpl.cpp │ │ │ └── PersonImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── circular_reference │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── circular_reference.xml │ │ ├── circular_reference_params.xml │ │ └── source │ │ │ ├── ClassAImpl.cpp │ │ │ ├── ClassAImpl.h │ │ │ ├── ClassBImpl.cpp │ │ │ └── ClassBImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── clanguage │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.c │ └── library │ │ ├── CMakeLists.txt │ │ ├── clanguage.xml │ │ ├── clanguage_params.xml │ │ └── source │ │ ├── DumperImpl.cpp │ │ ├── DumperImpl.h │ │ ├── PrinterImpl.cpp │ │ └── PrinterImpl.h ├── class_wrap_name │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── class_wrap_name.xml │ │ ├── class_wrap_name_params.xml │ │ └── source │ │ │ ├── PrinterImpl.cpp │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── closed_api │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── a.xml │ │ ├── closed_api.xml │ │ ├── closed_api_params.xml │ │ ├── professor.xml │ │ └── source │ │ │ ├── PersonImpl.cpp │ │ │ └── PersonImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── copy_semantic │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── copy_semantic.xml │ │ ├── copy_semantic_params.xml │ │ └── source │ │ │ ├── DumperImpl.cpp │ │ │ ├── DumperImpl.h │ │ │ ├── PrinterImpl.cpp │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── custom_suffix │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── custom_suffix.xml │ │ ├── custom_suffix_params.xml │ │ └── source │ │ │ ├── plotter_impl.cpp │ │ │ ├── plotter_impl.h │ │ │ ├── printer_impl.cpp │ │ │ ├── printer_impl.h │ │ │ ├── scanner_impl.cpp │ │ │ └── scanner_impl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── derived_from_abstract │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── derived_from_abstract.xml │ │ ├── derived_from_abstract_params.xml │ │ └── source │ │ │ ├── AnimalImpl.h │ │ │ ├── BirdImpl.cpp │ │ │ ├── BirdImpl.h │ │ │ ├── WolfImpl.cpp │ │ │ └── WolfImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── down_cast │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── down_cast.xml │ │ ├── down_cast_params.xml │ │ └── source │ │ │ ├── CircleFactory.cpp │ │ │ ├── CircleFactory.h │ │ │ ├── CircleImpl.cpp │ │ │ ├── CircleImpl.h │ │ │ ├── IPolygon.h │ │ │ ├── IShape.h │ │ │ ├── RefCountedImpl.h │ │ │ ├── SquareFactory.cpp │ │ │ ├── SquareFactory.h │ │ │ ├── SquareImpl.cpp │ │ │ ├── SquareImpl.h │ │ │ ├── TriangleFactory.cpp │ │ │ ├── TriangleFactory.h │ │ │ ├── TriangleImpl.cpp │ │ │ └── TriangleImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── doxygen_doc │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── doxygen_doc.xml │ │ ├── doxygen_doc_params.xml │ │ └── source │ │ ├── AddressImpl.h │ │ ├── NameImpl.h │ │ ├── PersonImpl.h │ │ └── PrinterImpl.h ├── exception │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── exception.xml │ │ ├── exception_params.xml │ │ └── source │ │ ├── Exception │ │ ├── BadArgumentImpl.cpp │ │ ├── BadArgumentImpl.h │ │ ├── DivisionByZeroImpl.cpp │ │ ├── DivisionByZeroImpl.h │ │ ├── GenericImpl.cpp │ │ ├── GenericImpl.h │ │ ├── NullArgumentImpl.cpp │ │ └── NullArgumentImpl.h │ │ ├── PrinterImpl.cpp │ │ ├── PrinterImpl.h │ │ ├── ScannerImpl.cpp │ │ └── ScannerImpl.h ├── external_class │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── Classes │ │ │ ├── CMakeLists.txt │ │ │ ├── classes.xml │ │ │ ├── classes_params.xml │ │ │ └── source │ │ │ │ ├── ClassA.h │ │ │ │ ├── ClassB.h │ │ │ │ └── ClassC.h │ │ ├── CompC │ │ │ ├── CMakeLists.txt │ │ │ ├── comp_c.xml │ │ │ ├── comp_c_params.xml │ │ │ └── source │ │ │ │ └── ComponentCImpl.h │ │ ├── Components │ │ │ ├── CMakeLists.txt │ │ │ ├── components.xml │ │ │ ├── components_params.xml │ │ │ └── source │ │ │ │ ├── ComponentAImpl.h │ │ │ │ └── ComponentBImpl.h │ │ └── Printer │ │ │ ├── CMakeLists.txt │ │ │ ├── printer.xml │ │ │ ├── printer_params.xml │ │ │ └── source │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── hello_world │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── hello_world.xml │ │ ├── hello_world_params.xml │ │ └── source │ │ │ ├── PrinterImpl.cpp │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── implementation_code │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── implementation_code.xml │ │ ├── implementation_code_params.xml │ │ └── source │ │ └── PersonImpl.h ├── mapped_types │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── mapped_types.xml │ │ ├── mapped_types_params.xml │ │ └── source │ │ │ ├── MappedTypes.cpp │ │ │ └── MappedTypes.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── mixed_semantic │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── mixed_semantic.xml │ │ ├── mixed_semantic_params.xml │ │ └── source │ │ │ ├── AddressImpl.h │ │ │ ├── MutatorImpl.h │ │ │ ├── NameImpl.h │ │ │ ├── PersonImpl.h │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── mixed_semantic2 │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── mixed_semantic2.xml │ │ ├── mixed_semantic2_params.xml │ │ └── source │ │ │ ├── AddressImpl.h │ │ │ ├── BaseClassImpl.h │ │ │ ├── NameImpl.h │ │ │ ├── PersonImpl.h │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── object_parameter │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── object_parameter.xml │ │ ├── object_parameter_params.xml │ │ └── source │ │ │ ├── DocumentImpl.cpp │ │ │ ├── DocumentImpl.h │ │ │ ├── PageImpl.cpp │ │ │ └── PageImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── overload_suffix │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── overload_suffix.xml │ │ ├── overload_suffix_params.xml │ │ └── source │ │ │ ├── PrinterImpl.cpp │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── point_set │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ └── library │ │ ├── CMakeLists.txt │ │ ├── point_set.xml │ │ ├── point_set_params.xml │ │ └── source │ │ ├── PointSetImpl.h │ │ ├── PointsImpl.h │ │ └── PositionImpl.h ├── raw_pointer_semantic │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── raw_pointer_semantic.xml │ │ ├── raw_pointer_semantic_params.xml │ │ └── source │ │ │ ├── DumperImpl.cpp │ │ │ ├── DumperImpl.h │ │ │ ├── PrinterImpl.cpp │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── reference_counted │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── reference_counted.xml │ │ ├── reference_counted_params.xml │ │ └── source │ │ │ ├── DumperImpl.cpp │ │ │ ├── DumperImpl.h │ │ │ ├── PrinterImpl.cpp │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── return_value │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── return_value.xml │ │ ├── return_value_params.xml │ │ └── source │ │ │ ├── FirstNameImpl.h │ │ │ ├── LastNameImpl.h │ │ │ ├── MiddleNameImpl.h │ │ │ ├── PersonImpl.h │ │ │ └── PrinterImpl.h │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── template │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── library │ │ ├── CMakeLists.txt │ │ ├── source │ │ │ ├── ModelImpl.h │ │ │ ├── PositionImpl.h │ │ │ └── VectorImpl.h │ │ ├── template.xml │ │ └── template_params.xml │ └── sharp_client │ │ ├── CMakeLists.txt │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── unit_test │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ ├── Main.cpp │ │ └── StaticEqual.h │ └── library │ │ ├── CMakeLists.txt │ │ ├── source │ │ ├── AddressImpl.h │ │ ├── NameImpl.h │ │ └── PersonImpl.h │ │ ├── unit_test.xml │ │ └── unit_test_params.xml └── virtual_interface │ ├── CMakeLists.txt │ ├── client │ ├── CMakeLists.txt │ └── Main.cpp │ ├── library │ ├── CMakeLists.txt │ ├── source │ │ ├── CircleFactory.cpp │ │ ├── CircleFactory.h │ │ ├── IShape.h │ │ ├── RectangleFactory.cpp │ │ ├── RectangleFactory.h │ │ ├── TriangleFactory.cpp │ │ └── TriangleFactory.h │ ├── virtual_interface.xml │ └── virtual_interface_params.xml │ └── sharp_client │ ├── CMakeLists.txt │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── scripts └── appveyor │ └── compiler_setup.bat ├── source ├── ArgumentGenerator.py ├── BuiltinTypeGenerator.py ├── CSharp.py ├── Callbacks.py ├── Capi.py ├── Capi.xsd ├── CapiGenerator.py ├── CapiParams.xsd ├── CheckBinaryCompatibilityGenerator.py ├── ClassGenerator.py ├── CreateGenerators.py ├── CustomerCallbacks.py ├── DocumentationGenerator.py ├── DoxygenCpp.py ├── DynamicLoaderGenerator.py ├── EnumGenerator.py ├── ExceptionTraits.py ├── ExtensionSemantic.py ├── ExternalClassGenerator.py ├── ExternalEnumGenerator.py ├── ExternalNamespaceGenerator.py ├── FileCache.py ├── FileGenerator.py ├── Helpers.py ├── InheritanceTraits.py ├── LibraryCallbacks.py ├── LifecycleTraits.py ├── MethodGenerator.py ├── NamespaceGenerator.py ├── NatvisGenerator.py ├── OverloadSuffixes.py ├── ParamsParser.py ├── ParseRoot.py ├── Parser.py ├── Properties.py ├── RunTests.py ├── StaticLoaderGenerator.py ├── TemplateGenerator.py ├── Templates.py ├── ThisArgumentGenerator.py ├── UnitTestGenerator.py ├── Xsd2Markdown.py ├── Xsd2Python3.py └── __init__.py └── tests ├── CMakeLists.txt ├── current_backuped_results ├── boost_shared_ptr │ ├── AGenWrap.cpp │ ├── boost_shared_ptr.run │ └── include │ │ ├── Example.h │ │ ├── Example │ │ ├── PrinterSharedPtr.h │ │ └── PrinterSharedPtrDecl.h │ │ ├── ExampleCapi.h │ │ └── ExampleFwd.h ├── callback │ ├── AGenWrap.cpp │ ├── callback.run │ ├── include │ │ ├── Callback │ │ │ └── common │ │ │ │ └── check_and_throw_exception.h │ │ ├── Example.h │ │ ├── Example │ │ │ ├── Person.h │ │ │ ├── PersonDecl.h │ │ │ ├── Printer.h │ │ │ ├── PrinterCallback.h │ │ │ ├── PrinterCallbackDecl.h │ │ │ └── PrinterDecl.h │ │ ├── ExampleCapi.h │ │ ├── ExampleEnums.h │ │ ├── ExampleFwd.h │ │ ├── Exception.h │ │ ├── Exception │ │ │ ├── BadArgument.h │ │ │ ├── BadArgumentDecl.h │ │ │ ├── DivisionByZero.h │ │ │ ├── DivisionByZeroDecl.h │ │ │ ├── Generic.h │ │ │ ├── GenericDecl.h │ │ │ ├── NullArgument.h │ │ │ └── NullArgumentDecl.h │ │ ├── ExceptionCapi.h │ │ └── ExceptionFwd.h │ └── snippets │ │ ├── Example.h │ │ └── Example │ │ ├── IPrinter.h │ │ └── PersonImpl.h ├── circular_reference │ ├── AGenWrap.cpp │ ├── circular_reference.run │ └── include │ │ └── Circular │ │ ├── Circular.h │ │ ├── CircularCapi.h │ │ ├── CircularFwd.h │ │ ├── ClassA.h │ │ ├── ClassADecl.h │ │ ├── ClassB.h │ │ └── ClassBDecl.h ├── clanguage │ ├── AGenWrap.cpp │ ├── clanguage.run │ └── include │ │ ├── Example.h │ │ ├── Example │ │ ├── Dumper.h │ │ ├── DumperDecl.h │ │ ├── Printer.h │ │ └── PrinterDecl.h │ │ ├── ExampleCapi.h │ │ └── ExampleFwd.h ├── class_wrap_name │ ├── AGenWrap.cpp │ ├── class_wrap_name.run │ └── include │ │ ├── ClassWrapName.h │ │ ├── ClassWrapName │ │ ├── Printer.h │ │ └── PrinterDecl.h │ │ ├── ClassWrapNameCapi.h │ │ └── ClassWrapNameFwd.h ├── copy_semantic │ ├── AGenWrap.cpp │ ├── copy_semantic.run │ └── include │ │ ├── Example.h │ │ ├── Example │ │ ├── Dumper.h │ │ ├── DumperDecl.h │ │ ├── Printer.h │ │ └── PrinterDecl.h │ │ ├── ExampleCapi.h │ │ └── ExampleFwd.h ├── custom_suffix │ ├── agen_wrap.cpp │ ├── custom_suffix.run │ └── include │ │ └── hello_world │ │ ├── hello_world.h │ │ ├── hello_world_capi.h │ │ ├── hello_world_fwd_ptr.h │ │ ├── plotter.h │ │ ├── plotter_decl.h │ │ ├── printer.h │ │ ├── printer_decl.h │ │ ├── scanner.h │ │ └── scanner_decl.h ├── down_cast │ ├── AGenWrap.cpp │ ├── down_cast.run │ └── include │ │ ├── DownCast.h │ │ ├── Example.h │ │ ├── Example │ │ ├── ICircle.h │ │ ├── ICircleDecl.h │ │ ├── IPolygon.h │ │ ├── IPolygonDecl.h │ │ ├── IShape.h │ │ ├── IShapeDecl.h │ │ ├── ISquare.h │ │ ├── ISquareDecl.h │ │ ├── ITriangle.h │ │ └── ITriangleDecl.h │ │ ├── ExampleCapi.h │ │ └── ExampleFwd.h ├── doxygen_doc │ ├── AGenWrap.cpp │ ├── doxygen_doc.run │ └── include │ │ ├── DoxygenDoc.h │ │ ├── DoxygenDoc │ │ ├── Address.h │ │ ├── AddressDecl.h │ │ ├── Name.h │ │ ├── NameDecl.h │ │ ├── Person.h │ │ ├── PersonDecl.h │ │ ├── Printer.h │ │ └── PrinterDecl.h │ │ ├── DoxygenDocCapi.h │ │ └── DoxygenDocFwd.h ├── exception │ ├── AGenWrap.cpp │ ├── exception.run │ └── include │ │ ├── Example.h │ │ ├── Example │ │ ├── Printer.h │ │ ├── PrinterDecl.h │ │ ├── Scanner.h │ │ └── ScannerDecl.h │ │ ├── ExampleCapi.h │ │ ├── ExampleFwd.h │ │ ├── Exception.h │ │ ├── Exception │ │ ├── BadArgument.h │ │ ├── BadArgumentDecl.h │ │ ├── DivisionByZero.h │ │ ├── DivisionByZeroDecl.h │ │ ├── Generic.h │ │ ├── GenericDecl.h │ │ ├── NullArgument.h │ │ ├── NullArgumentDecl.h │ │ └── common │ │ │ └── check_and_throw_exception.h │ │ ├── ExceptionCapi.h │ │ └── ExceptionFwd.h ├── external_class │ ├── Classes │ │ ├── AGenWrap.cpp │ │ └── include │ │ │ ├── Classes.h │ │ │ ├── Classes │ │ │ ├── ClassA.h │ │ │ ├── ClassADecl.h │ │ │ ├── ClassB.h │ │ │ ├── ClassBDecl.h │ │ │ ├── ClassC.h │ │ │ └── ClassCDecl.h │ │ │ ├── ClassesCapi.h │ │ │ └── ClassesFwd.h │ ├── CompC │ │ ├── AGenWrap.cpp │ │ └── include │ │ │ ├── CompC.h │ │ │ ├── CompC │ │ │ ├── ComponentC.h │ │ │ └── ComponentCDecl.h │ │ │ ├── CompCCapi.h │ │ │ └── CompCFwd.h │ ├── Components │ │ ├── AGenWrap.cpp │ │ └── include │ │ │ ├── Components.h │ │ │ ├── Components │ │ │ ├── ComponentA.h │ │ │ ├── ComponentADecl.h │ │ │ ├── ComponentB.h │ │ │ └── ComponentBDecl.h │ │ │ ├── ComponentsCapi.h │ │ │ └── ComponentsFwd.h │ ├── Printer │ │ ├── AGenWrap.cpp │ │ └── include │ │ │ ├── PrinterNS.h │ │ │ ├── PrinterNS │ │ │ ├── Printer.h │ │ │ └── PrinterDecl.h │ │ │ ├── PrinterNSCapi.h │ │ │ └── PrinterNSFwd.h │ └── external_class.run ├── file_options │ ├── test00 │ │ ├── AGenWrap.cpp │ │ ├── include │ │ │ ├── Example.h │ │ │ ├── Example │ │ │ │ ├── Geometry.h │ │ │ │ ├── Geometry │ │ │ │ │ ├── Brep.h │ │ │ │ │ ├── Brep │ │ │ │ │ │ ├── Body.h │ │ │ │ │ │ └── BodyDecl.h │ │ │ │ │ ├── Sphere.h │ │ │ │ │ └── SphereDecl.h │ │ │ │ ├── Printer.h │ │ │ │ ├── PrinterDecl.h │ │ │ │ ├── Scene.h │ │ │ │ └── Scene │ │ │ │ │ ├── Node.h │ │ │ │ │ └── NodeDecl.h │ │ │ ├── ExampleCapi.h │ │ │ ├── ExampleFwd.h │ │ │ ├── Sample.h │ │ │ ├── Sample │ │ │ │ ├── Data.h │ │ │ │ └── DataDecl.h │ │ │ ├── SampleCapi.h │ │ │ └── SampleFwd.h │ │ └── test00.run │ └── test01 │ │ ├── AGenWrap.cpp │ │ ├── include │ │ ├── Example │ │ │ ├── Example.h │ │ │ ├── ExampleCapi.h │ │ │ ├── ExampleFwd.h │ │ │ ├── Geometry │ │ │ │ ├── Brep │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── BodyDecl.h │ │ │ │ │ └── Brep.h │ │ │ │ ├── Geometry.h │ │ │ │ ├── Sphere.h │ │ │ │ └── SphereDecl.h │ │ │ ├── Printer.h │ │ │ ├── PrinterDecl.h │ │ │ └── Scene │ │ │ │ ├── Node.h │ │ │ │ ├── NodeDecl.h │ │ │ │ └── Scene.h │ │ └── Sample │ │ │ ├── Data.h │ │ │ ├── DataDecl.h │ │ │ ├── Sample.h │ │ │ ├── SampleCapi.h │ │ │ └── SampleFwd.h │ │ └── test01.run ├── hello_world │ ├── AGenWrap.cpp │ ├── hello_world.run │ └── include │ │ ├── HelloWorld.h │ │ ├── HelloWorld │ │ ├── Printer.h │ │ └── PrinterDecl.h │ │ ├── HelloWorldCapi.h │ │ └── HelloWorldFwd.h ├── implementation_code │ ├── AGenWrap.cpp │ ├── implementation_code.run │ └── include │ │ ├── ImplementationCode │ │ └── common │ │ │ └── check_and_throw_exception.h │ │ ├── STL.h │ │ ├── STL │ │ ├── Community.h │ │ ├── CommunityDecl.h │ │ ├── Exception.h │ │ ├── ExceptionDecl.h │ │ ├── Person.h │ │ ├── PersonDecl.h │ │ ├── PersonRawPtr.h │ │ ├── PersonRawPtrDecl.h │ │ ├── String.h │ │ ├── StringDecl.h │ │ ├── VectorOfStructuresRawPtr.h │ │ ├── VectorOfStructuresRawPtrDecl.h │ │ ├── VectorOfStructuresRawPtrElementType.h │ │ ├── VectorOfStructuresRawPtrElementTypeDecl.h │ │ ├── VectorOfStructuresRawPtrSTLPerson.h │ │ ├── VectorOfStructuresRawPtrSTLPersonDecl.h │ │ ├── VectorOfStructuresSTLPerson.h │ │ ├── VectorOfStructuresSTLPersonDecl.h │ │ ├── VectorSTLPerson.h │ │ ├── VectorSTLPersonDecl.h │ │ ├── Vectorchar.h │ │ ├── VectorcharDecl.h │ │ ├── Vectordouble.h │ │ ├── VectordoubleDecl.h │ │ ├── Vectorint.h │ │ └── VectorintDecl.h │ │ ├── STLCapi.h │ │ └── STLFwd.h ├── mapped_types │ ├── AGenWrap.cpp │ ├── include │ │ ├── MappedTypes.h │ │ ├── MappedTypes │ │ │ ├── Device.h │ │ │ ├── DeviceDecl.h │ │ │ ├── Person.h │ │ │ └── PersonDecl.h │ │ ├── MappedTypesCapi.h │ │ └── MappedTypesFwd.h │ └── mapped_types.run ├── mixed_semantic │ ├── AGenWrap.cpp │ ├── include │ │ ├── MixedSemantic.h │ │ ├── MixedSemantic │ │ │ ├── Address.h │ │ │ ├── AddressDecl.h │ │ │ ├── Mutator.h │ │ │ ├── MutatorDecl.h │ │ │ ├── Name.h │ │ │ ├── NameDecl.h │ │ │ ├── Person.h │ │ │ ├── PersonDecl.h │ │ │ ├── Printer.h │ │ │ └── PrinterDecl.h │ │ ├── MixedSemanticCapi.h │ │ └── MixedSemanticFwd.h │ └── mixed_semantic.run ├── mixed_semantic2 │ ├── AGenWrap.cpp │ ├── include │ │ ├── MixedSemantic2.h │ │ ├── MixedSemantic2 │ │ │ ├── Address.h │ │ │ ├── AddressCopy.h │ │ │ ├── AddressCopyDecl.h │ │ │ ├── AddressDecl.h │ │ │ ├── AddressRawPtr.h │ │ │ ├── AddressRawPtrDecl.h │ │ │ ├── Name.h │ │ │ ├── NameDecl.h │ │ │ ├── NameRawPtr.h │ │ │ ├── NameRawPtrDecl.h │ │ │ ├── Person.h │ │ │ ├── PersonCopy.h │ │ │ ├── PersonCopyDecl.h │ │ │ ├── PersonDecl.h │ │ │ ├── Printer.h │ │ │ └── PrinterDecl.h │ │ ├── MixedSemantic2Capi.h │ │ └── MixedSemantic2Fwd.h │ └── mixed_semantic2.run ├── object_parameter │ ├── AGenWrap.cpp │ ├── include │ │ └── Example │ │ │ ├── Document.h │ │ │ ├── DocumentDecl.h │ │ │ ├── Example.h │ │ │ ├── ExampleCapi.h │ │ │ ├── ExampleFwd.h │ │ │ ├── Page.h │ │ │ └── PageDecl.h │ └── object_parameter.run ├── overload_suffix │ ├── AGenWrap.cpp │ ├── include │ │ ├── OverloadSuffix.h │ │ ├── OverloadSuffix │ │ │ ├── Printer.h │ │ │ └── PrinterDecl.h │ │ ├── OverloadSuffixCapi.h │ │ └── OverloadSuffixFwd.h │ └── overload_suffix.run ├── point_set │ ├── AGenWrap.cpp │ ├── include │ │ ├── PointSet.h │ │ ├── PointSet │ │ │ ├── PointSet.h │ │ │ ├── PointSetDecl.h │ │ │ ├── Points.h │ │ │ ├── PointsDecl.h │ │ │ ├── Position.h │ │ │ └── PositionDecl.h │ │ ├── PointSetCapi.h │ │ └── PointSetFwd.h │ └── point_set.run ├── raw_pointer_semantic │ ├── AGenWrap.cpp │ ├── include │ │ ├── Example.h │ │ ├── Example │ │ │ ├── Dumper.h │ │ │ ├── DumperDecl.h │ │ │ ├── Printer.h │ │ │ └── PrinterDecl.h │ │ ├── ExampleCapi.h │ │ └── ExampleFwd.h │ └── raw_pointer_semantic.run ├── reference_counted │ ├── AGenWrap.cpp │ ├── include │ │ ├── Example.h │ │ ├── Example │ │ │ ├── Dumper.h │ │ │ ├── DumperDecl.h │ │ │ ├── Printer.h │ │ │ └── PrinterDecl.h │ │ ├── ExampleCapi.h │ │ └── ExampleFwd.h │ └── reference_counted.run ├── return_value │ ├── AGenWrap.cpp │ ├── include │ │ ├── ReturnValue.h │ │ ├── ReturnValue │ │ │ ├── FirstName.h │ │ │ ├── FirstNameDecl.h │ │ │ ├── LastName.h │ │ │ ├── LastNameDecl.h │ │ │ ├── MiddleName.h │ │ │ ├── MiddleNameDecl.h │ │ │ ├── Person.h │ │ │ ├── PersonDecl.h │ │ │ ├── Printer.h │ │ │ └── PrinterDecl.h │ │ ├── ReturnValueCapi.h │ │ └── ReturnValueFwd.h │ └── return_value.run ├── template │ ├── AGenWrap.cpp │ ├── include │ │ ├── Example.h │ │ ├── Example │ │ │ ├── Modeldouble.h │ │ │ ├── ModeldoubleDecl.h │ │ │ ├── Modelfloat.h │ │ │ ├── ModelfloatDecl.h │ │ │ ├── Position4Ddouble.h │ │ │ ├── Position4DdoubleDecl.h │ │ │ ├── Position4Dfloat.h │ │ │ ├── Position4DfloatDecl.h │ │ │ ├── Positiondouble.h │ │ │ ├── PositiondoubleDecl.h │ │ │ ├── Positionfloat.h │ │ │ ├── PositionfloatDecl.h │ │ │ ├── VectorOfExamplePosition4Ddouble.h │ │ │ ├── VectorOfExamplePosition4DdoubleDecl.h │ │ │ ├── VectorOfExamplePosition4Dfloat.h │ │ │ ├── VectorOfExamplePosition4DfloatDecl.h │ │ │ ├── VectorOfExamplePositiondouble.h │ │ │ ├── VectorOfExamplePositiondoubleDecl.h │ │ │ ├── VectorOfExamplePositionfloat.h │ │ │ ├── VectorOfExamplePositionfloatDecl.h │ │ │ ├── VectorOfExampleVectorOfExamplePosition4Dfloat.h │ │ │ ├── VectorOfExampleVectorOfExamplePosition4DfloatDecl.h │ │ │ ├── VectorOfObjectsDerivedExampleModeldouble.h │ │ │ ├── VectorOfObjectsDerivedExampleModeldoubleDecl.h │ │ │ ├── VectorOfObjectsDerivedExampleModelfloat.h │ │ │ ├── VectorOfObjectsDerivedExampleModelfloatDecl.h │ │ │ ├── VectorOfObjectsExampleModeldouble.h │ │ │ ├── VectorOfObjectsExampleModeldoubleDecl.h │ │ │ ├── VectorOfObjectsExampleModelfloat.h │ │ │ ├── VectorOfObjectsExampleModelfloatDecl.h │ │ │ ├── VectorOfchar.h │ │ │ ├── VectorOfcharDecl.h │ │ │ ├── VectorOfdouble.h │ │ │ ├── VectorOfdoubleDecl.h │ │ │ ├── VectorOfint.h │ │ │ └── VectorOfintDecl.h │ │ ├── ExampleCapi.h │ │ ├── ExampleFwd.h │ │ └── Template.h │ └── template.run ├── unit_test │ ├── AGenWrap.cpp │ ├── include │ │ ├── UnitTest.h │ │ ├── UnitTest │ │ │ ├── Address.h │ │ │ ├── AddressDecl.h │ │ │ ├── Name.h │ │ │ ├── NameDecl.h │ │ │ ├── Person.h │ │ │ └── PersonDecl.h │ │ ├── UnitTestCapi.h │ │ └── UnitTestFwd.h │ └── unit_test.run └── virtual_interface │ ├── AGenWrap.cpp │ ├── include │ ├── Example.h │ ├── Example │ │ ├── IShape.h │ │ └── IShapeDecl.h │ ├── ExampleCapi.h │ └── ExampleFwd.h │ └── virtual_interface.run └── file_options ├── CMakeLists.txt ├── clients └── Main.cpp └── library ├── file_options.xml ├── source ├── BodyImpl.cpp ├── BodyImpl.h ├── DataImpl.cpp ├── DataImpl.h ├── NodeImpl.cpp ├── NodeImpl.h ├── PrinterImpl.cpp ├── PrinterImpl.h ├── SphereImpl.cpp └── SphereImpl.h ├── test00_params.xml └── test01_params.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/README.md -------------------------------------------------------------------------------- /UseBCapi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/UseBCapi.cmake -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/DescriptionParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/doc/DescriptionParams.md -------------------------------------------------------------------------------- /doc/DescriptionSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/doc/DescriptionSchema.md -------------------------------------------------------------------------------- /doc/DevelopersGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/doc/DevelopersGuide.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api_include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api_include/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api_include/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/client/Main.cpp -------------------------------------------------------------------------------- /examples/api_include/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api_include/library/Example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Example/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api_include/library/Example/api_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Example/api_include.xml -------------------------------------------------------------------------------- /examples/api_include/library/Example/api_include_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Example/api_include_params.xml -------------------------------------------------------------------------------- /examples/api_include/library/Example/source/ExistingImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Example/source/ExistingImpl.cpp -------------------------------------------------------------------------------- /examples/api_include/library/Example/source/ExistingImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Example/source/ExistingImpl.h -------------------------------------------------------------------------------- /examples/api_include/library/Included/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Included/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api_include/library/Included/included.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Included/included.xml -------------------------------------------------------------------------------- /examples/api_include/library/Included/included_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Included/included_params.xml -------------------------------------------------------------------------------- /examples/api_include/library/Included/source/IncludedImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Included/source/IncludedImpl.cpp -------------------------------------------------------------------------------- /examples/api_include/library/Included/source/IncludedImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/library/Included/source/IncludedImpl.h -------------------------------------------------------------------------------- /examples/api_include/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/api_include/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/api_include/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/api_include/sharp_client/Properties/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/api_include/sharp_client/Properties/Program.cs -------------------------------------------------------------------------------- /examples/boost_shared_ptr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/CMakeLists.txt -------------------------------------------------------------------------------- /examples/boost_shared_ptr/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/boost_shared_ptr/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/client/Main.cpp -------------------------------------------------------------------------------- /examples/boost_shared_ptr/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/boost_shared_ptr/library/boost_shared_ptr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/library/boost_shared_ptr.xml -------------------------------------------------------------------------------- /examples/boost_shared_ptr/library/boost_shared_ptr_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/library/boost_shared_ptr_params.xml -------------------------------------------------------------------------------- /examples/boost_shared_ptr/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/boost_shared_ptr/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/boost_shared_ptr/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/callback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/CMakeLists.txt -------------------------------------------------------------------------------- /examples/callback/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/callback/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/client/Main.cpp -------------------------------------------------------------------------------- /examples/callback/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/callback/library/callback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/callback.xml -------------------------------------------------------------------------------- /examples/callback/library/callback_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/callback_params.xml -------------------------------------------------------------------------------- /examples/callback/library/source/DefaultPrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/DefaultPrinterImpl.cpp -------------------------------------------------------------------------------- /examples/callback/library/source/DefaultPrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/DefaultPrinterImpl.h -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/BadArgumentImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/BadArgumentImpl.cpp -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/BadArgumentImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/BadArgumentImpl.h -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/DivisionByZeroImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/DivisionByZeroImpl.cpp -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/DivisionByZeroImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/DivisionByZeroImpl.h -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/GenericImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/GenericImpl.cpp -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/GenericImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/GenericImpl.h -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/NullArgumentImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/NullArgumentImpl.cpp -------------------------------------------------------------------------------- /examples/callback/library/source/Exception/NullArgumentImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/Exception/NullArgumentImpl.h -------------------------------------------------------------------------------- /examples/callback/library/source/IPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/IPrinter.h -------------------------------------------------------------------------------- /examples/callback/library/source/PersonImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/PersonImpl.cpp -------------------------------------------------------------------------------- /examples/callback/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/callback/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/callback/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/callback/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/callback/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/circular_reference/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/CMakeLists.txt -------------------------------------------------------------------------------- /examples/circular_reference/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/circular_reference/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/client/Main.cpp -------------------------------------------------------------------------------- /examples/circular_reference/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/circular_reference/library/circular_reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/library/circular_reference.xml -------------------------------------------------------------------------------- /examples/circular_reference/library/circular_reference_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/library/circular_reference_params.xml -------------------------------------------------------------------------------- /examples/circular_reference/library/source/ClassAImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/library/source/ClassAImpl.cpp -------------------------------------------------------------------------------- /examples/circular_reference/library/source/ClassAImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/library/source/ClassAImpl.h -------------------------------------------------------------------------------- /examples/circular_reference/library/source/ClassBImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/library/source/ClassBImpl.cpp -------------------------------------------------------------------------------- /examples/circular_reference/library/source/ClassBImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/library/source/ClassBImpl.h -------------------------------------------------------------------------------- /examples/circular_reference/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/circular_reference/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/circular_reference/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/circular_reference/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/clanguage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/CMakeLists.txt -------------------------------------------------------------------------------- /examples/clanguage/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/clanguage/client/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/client/Main.c -------------------------------------------------------------------------------- /examples/clanguage/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/clanguage/library/clanguage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/library/clanguage.xml -------------------------------------------------------------------------------- /examples/clanguage/library/clanguage_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/library/clanguage_params.xml -------------------------------------------------------------------------------- /examples/clanguage/library/source/DumperImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/library/source/DumperImpl.cpp -------------------------------------------------------------------------------- /examples/clanguage/library/source/DumperImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/library/source/DumperImpl.h -------------------------------------------------------------------------------- /examples/clanguage/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/clanguage/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/clanguage/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/class_wrap_name/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/CMakeLists.txt -------------------------------------------------------------------------------- /examples/class_wrap_name/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/class_wrap_name/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/client/Main.cpp -------------------------------------------------------------------------------- /examples/class_wrap_name/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/class_wrap_name/library/class_wrap_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/library/class_wrap_name.xml -------------------------------------------------------------------------------- /examples/class_wrap_name/library/class_wrap_name_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/library/class_wrap_name_params.xml -------------------------------------------------------------------------------- /examples/class_wrap_name/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/class_wrap_name/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/class_wrap_name/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/class_wrap_name/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/class_wrap_name/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/class_wrap_name/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/closed_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/CMakeLists.txt -------------------------------------------------------------------------------- /examples/closed_api/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/closed_api/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/client/Main.cpp -------------------------------------------------------------------------------- /examples/closed_api/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/closed_api/library/a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/library/a.xml -------------------------------------------------------------------------------- /examples/closed_api/library/closed_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/library/closed_api.xml -------------------------------------------------------------------------------- /examples/closed_api/library/closed_api_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/library/closed_api_params.xml -------------------------------------------------------------------------------- /examples/closed_api/library/professor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/library/professor.xml -------------------------------------------------------------------------------- /examples/closed_api/library/source/PersonImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/library/source/PersonImpl.cpp -------------------------------------------------------------------------------- /examples/closed_api/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/closed_api/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/closed_api/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/closed_api/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/closed_api/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/copy_semantic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/copy_semantic/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/copy_semantic/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/client/Main.cpp -------------------------------------------------------------------------------- /examples/copy_semantic/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/copy_semantic/library/copy_semantic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/library/copy_semantic.xml -------------------------------------------------------------------------------- /examples/copy_semantic/library/copy_semantic_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/library/copy_semantic_params.xml -------------------------------------------------------------------------------- /examples/copy_semantic/library/source/DumperImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/library/source/DumperImpl.cpp -------------------------------------------------------------------------------- /examples/copy_semantic/library/source/DumperImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/library/source/DumperImpl.h -------------------------------------------------------------------------------- /examples/copy_semantic/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/copy_semantic/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/copy_semantic/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/copy_semantic/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/copy_semantic/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/copy_semantic/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/custom_suffix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom_suffix/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom_suffix/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/client/Main.cpp -------------------------------------------------------------------------------- /examples/custom_suffix/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom_suffix/library/custom_suffix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/custom_suffix.xml -------------------------------------------------------------------------------- /examples/custom_suffix/library/custom_suffix_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/custom_suffix_params.xml -------------------------------------------------------------------------------- /examples/custom_suffix/library/source/plotter_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/source/plotter_impl.cpp -------------------------------------------------------------------------------- /examples/custom_suffix/library/source/plotter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/source/plotter_impl.h -------------------------------------------------------------------------------- /examples/custom_suffix/library/source/printer_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/source/printer_impl.cpp -------------------------------------------------------------------------------- /examples/custom_suffix/library/source/printer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/source/printer_impl.h -------------------------------------------------------------------------------- /examples/custom_suffix/library/source/scanner_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/source/scanner_impl.cpp -------------------------------------------------------------------------------- /examples/custom_suffix/library/source/scanner_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/library/source/scanner_impl.h -------------------------------------------------------------------------------- /examples/custom_suffix/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/custom_suffix/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/custom_suffix/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/custom_suffix/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/derived_from_abstract/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/CMakeLists.txt -------------------------------------------------------------------------------- /examples/derived_from_abstract/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/derived_from_abstract/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/client/Main.cpp -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/derived_from_abstract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/derived_from_abstract.xml -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/derived_from_abstract_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/derived_from_abstract_params.xml -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/source/AnimalImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/source/AnimalImpl.h -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/source/BirdImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/source/BirdImpl.cpp -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/source/BirdImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/source/BirdImpl.h -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/source/WolfImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/source/WolfImpl.cpp -------------------------------------------------------------------------------- /examples/derived_from_abstract/library/source/WolfImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/library/source/WolfImpl.h -------------------------------------------------------------------------------- /examples/derived_from_abstract/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/derived_from_abstract/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/derived_from_abstract/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/derived_from_abstract/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/down_cast/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/CMakeLists.txt -------------------------------------------------------------------------------- /examples/down_cast/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/down_cast/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/client/Main.cpp -------------------------------------------------------------------------------- /examples/down_cast/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/down_cast/library/down_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/down_cast.xml -------------------------------------------------------------------------------- /examples/down_cast/library/down_cast_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/down_cast_params.xml -------------------------------------------------------------------------------- /examples/down_cast/library/source/CircleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/CircleFactory.cpp -------------------------------------------------------------------------------- /examples/down_cast/library/source/CircleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/CircleFactory.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/CircleImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/CircleImpl.cpp -------------------------------------------------------------------------------- /examples/down_cast/library/source/CircleImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/CircleImpl.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/IPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/IPolygon.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/IShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/IShape.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/RefCountedImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/RefCountedImpl.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/SquareFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/SquareFactory.cpp -------------------------------------------------------------------------------- /examples/down_cast/library/source/SquareFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/SquareFactory.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/SquareImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/SquareImpl.cpp -------------------------------------------------------------------------------- /examples/down_cast/library/source/SquareImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/SquareImpl.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/TriangleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/TriangleFactory.cpp -------------------------------------------------------------------------------- /examples/down_cast/library/source/TriangleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/TriangleFactory.h -------------------------------------------------------------------------------- /examples/down_cast/library/source/TriangleImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/TriangleImpl.cpp -------------------------------------------------------------------------------- /examples/down_cast/library/source/TriangleImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/library/source/TriangleImpl.h -------------------------------------------------------------------------------- /examples/down_cast/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/down_cast/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/down_cast/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/down_cast/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/doxygen_doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/doxygen_doc/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/doxygen_doc/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/client/Main.cpp -------------------------------------------------------------------------------- /examples/doxygen_doc/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/doxygen_doc/library/doxygen_doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/library/doxygen_doc.xml -------------------------------------------------------------------------------- /examples/doxygen_doc/library/doxygen_doc_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/library/doxygen_doc_params.xml -------------------------------------------------------------------------------- /examples/doxygen_doc/library/source/AddressImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/library/source/AddressImpl.h -------------------------------------------------------------------------------- /examples/doxygen_doc/library/source/NameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/library/source/NameImpl.h -------------------------------------------------------------------------------- /examples/doxygen_doc/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/doxygen_doc/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/doxygen_doc/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/exception/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/CMakeLists.txt -------------------------------------------------------------------------------- /examples/exception/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/exception/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/client/Main.cpp -------------------------------------------------------------------------------- /examples/exception/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/exception/library/exception.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/exception.xml -------------------------------------------------------------------------------- /examples/exception/library/exception_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/exception_params.xml -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/BadArgumentImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/BadArgumentImpl.cpp -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/BadArgumentImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/BadArgumentImpl.h -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/DivisionByZeroImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/DivisionByZeroImpl.cpp -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/DivisionByZeroImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/DivisionByZeroImpl.h -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/GenericImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/GenericImpl.cpp -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/GenericImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/GenericImpl.h -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/NullArgumentImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/NullArgumentImpl.cpp -------------------------------------------------------------------------------- /examples/exception/library/source/Exception/NullArgumentImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/Exception/NullArgumentImpl.h -------------------------------------------------------------------------------- /examples/exception/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/exception/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/exception/library/source/ScannerImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/ScannerImpl.cpp -------------------------------------------------------------------------------- /examples/exception/library/source/ScannerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/exception/library/source/ScannerImpl.h -------------------------------------------------------------------------------- /examples/external_class/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/client/Main.cpp -------------------------------------------------------------------------------- /examples/external_class/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/library/Classes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Classes/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/library/Classes/classes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Classes/classes.xml -------------------------------------------------------------------------------- /examples/external_class/library/Classes/classes_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Classes/classes_params.xml -------------------------------------------------------------------------------- /examples/external_class/library/Classes/source/ClassA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Classes/source/ClassA.h -------------------------------------------------------------------------------- /examples/external_class/library/Classes/source/ClassB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Classes/source/ClassB.h -------------------------------------------------------------------------------- /examples/external_class/library/Classes/source/ClassC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Classes/source/ClassC.h -------------------------------------------------------------------------------- /examples/external_class/library/CompC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/CompC/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/library/CompC/comp_c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/CompC/comp_c.xml -------------------------------------------------------------------------------- /examples/external_class/library/CompC/comp_c_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/CompC/comp_c_params.xml -------------------------------------------------------------------------------- /examples/external_class/library/CompC/source/ComponentCImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/CompC/source/ComponentCImpl.h -------------------------------------------------------------------------------- /examples/external_class/library/Components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Components/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/library/Components/components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Components/components.xml -------------------------------------------------------------------------------- /examples/external_class/library/Components/components_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Components/components_params.xml -------------------------------------------------------------------------------- /examples/external_class/library/Components/source/ComponentAImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Components/source/ComponentAImpl.h -------------------------------------------------------------------------------- /examples/external_class/library/Components/source/ComponentBImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Components/source/ComponentBImpl.h -------------------------------------------------------------------------------- /examples/external_class/library/Printer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Printer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/library/Printer/printer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Printer/printer.xml -------------------------------------------------------------------------------- /examples/external_class/library/Printer/printer_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Printer/printer_params.xml -------------------------------------------------------------------------------- /examples/external_class/library/Printer/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/library/Printer/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/external_class/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_class/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/external_class/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/external_class/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_world/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_world/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/client/Main.cpp -------------------------------------------------------------------------------- /examples/hello_world/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_world/library/hello_world.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/library/hello_world.xml -------------------------------------------------------------------------------- /examples/hello_world/library/hello_world_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/library/hello_world_params.xml -------------------------------------------------------------------------------- /examples/hello_world/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/hello_world/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/hello_world/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_world/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/hello_world/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/hello_world/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/implementation_code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/implementation_code/CMakeLists.txt -------------------------------------------------------------------------------- /examples/implementation_code/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/implementation_code/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/implementation_code/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/implementation_code/client/Main.cpp -------------------------------------------------------------------------------- /examples/implementation_code/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/implementation_code/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/implementation_code/library/implementation_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/implementation_code/library/implementation_code.xml -------------------------------------------------------------------------------- /examples/implementation_code/library/implementation_code_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/implementation_code/library/implementation_code_params.xml -------------------------------------------------------------------------------- /examples/implementation_code/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/implementation_code/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/mapped_types/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mapped_types/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mapped_types/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/client/Main.cpp -------------------------------------------------------------------------------- /examples/mapped_types/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mapped_types/library/mapped_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/library/mapped_types.xml -------------------------------------------------------------------------------- /examples/mapped_types/library/mapped_types_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/library/mapped_types_params.xml -------------------------------------------------------------------------------- /examples/mapped_types/library/source/MappedTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/library/source/MappedTypes.cpp -------------------------------------------------------------------------------- /examples/mapped_types/library/source/MappedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/library/source/MappedTypes.h -------------------------------------------------------------------------------- /examples/mapped_types/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mapped_types/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/mapped_types/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mapped_types/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/mixed_semantic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/client/Main.cpp -------------------------------------------------------------------------------- /examples/mixed_semantic/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic/library/mixed_semantic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/mixed_semantic.xml -------------------------------------------------------------------------------- /examples/mixed_semantic/library/mixed_semantic_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/mixed_semantic_params.xml -------------------------------------------------------------------------------- /examples/mixed_semantic/library/source/AddressImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/source/AddressImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic/library/source/MutatorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/source/MutatorImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic/library/source/NameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/source/NameImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/mixed_semantic/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/mixed_semantic2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic2/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic2/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/client/Main.cpp -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/mixed_semantic2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/mixed_semantic2.xml -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/mixed_semantic2_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/mixed_semantic2_params.xml -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/source/AddressImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/source/AddressImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/source/BaseClassImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/source/BaseClassImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/source/NameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/source/NameImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic2/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/mixed_semantic2/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mixed_semantic2/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/mixed_semantic2/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/mixed_semantic2/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/object_parameter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/CMakeLists.txt -------------------------------------------------------------------------------- /examples/object_parameter/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/object_parameter/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/client/Main.cpp -------------------------------------------------------------------------------- /examples/object_parameter/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/object_parameter/library/object_parameter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/library/object_parameter.xml -------------------------------------------------------------------------------- /examples/object_parameter/library/object_parameter_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/library/object_parameter_params.xml -------------------------------------------------------------------------------- /examples/object_parameter/library/source/DocumentImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/library/source/DocumentImpl.cpp -------------------------------------------------------------------------------- /examples/object_parameter/library/source/DocumentImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/library/source/DocumentImpl.h -------------------------------------------------------------------------------- /examples/object_parameter/library/source/PageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/library/source/PageImpl.cpp -------------------------------------------------------------------------------- /examples/object_parameter/library/source/PageImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/library/source/PageImpl.h -------------------------------------------------------------------------------- /examples/object_parameter/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/object_parameter/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/object_parameter/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/object_parameter/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/overload_suffix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/CMakeLists.txt -------------------------------------------------------------------------------- /examples/overload_suffix/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/overload_suffix/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/client/Main.cpp -------------------------------------------------------------------------------- /examples/overload_suffix/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/overload_suffix/library/overload_suffix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/library/overload_suffix.xml -------------------------------------------------------------------------------- /examples/overload_suffix/library/overload_suffix_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/library/overload_suffix_params.xml -------------------------------------------------------------------------------- /examples/overload_suffix/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/overload_suffix/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/overload_suffix/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/overload_suffix/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/overload_suffix/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/overload_suffix/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/point_set/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/CMakeLists.txt -------------------------------------------------------------------------------- /examples/point_set/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/point_set/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/client/Main.cpp -------------------------------------------------------------------------------- /examples/point_set/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/point_set/library/point_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/library/point_set.xml -------------------------------------------------------------------------------- /examples/point_set/library/point_set_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/library/point_set_params.xml -------------------------------------------------------------------------------- /examples/point_set/library/source/PointSetImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/library/source/PointSetImpl.h -------------------------------------------------------------------------------- /examples/point_set/library/source/PointsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/library/source/PointsImpl.h -------------------------------------------------------------------------------- /examples/point_set/library/source/PositionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/point_set/library/source/PositionImpl.h -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/client/Main.cpp -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/library/raw_pointer_semantic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/library/raw_pointer_semantic.xml -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/library/raw_pointer_semantic_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/library/raw_pointer_semantic_params.xml -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/library/source/DumperImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/library/source/DumperImpl.cpp -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/library/source/DumperImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/library/source/DumperImpl.h -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/raw_pointer_semantic/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/raw_pointer_semantic/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/reference_counted/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/CMakeLists.txt -------------------------------------------------------------------------------- /examples/reference_counted/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/reference_counted/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/client/Main.cpp -------------------------------------------------------------------------------- /examples/reference_counted/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/reference_counted/library/reference_counted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/library/reference_counted.xml -------------------------------------------------------------------------------- /examples/reference_counted/library/reference_counted_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/library/reference_counted_params.xml -------------------------------------------------------------------------------- /examples/reference_counted/library/source/DumperImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/library/source/DumperImpl.cpp -------------------------------------------------------------------------------- /examples/reference_counted/library/source/DumperImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/library/source/DumperImpl.h -------------------------------------------------------------------------------- /examples/reference_counted/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /examples/reference_counted/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/reference_counted/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/reference_counted/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/reference_counted/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/reference_counted/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/return_value/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/CMakeLists.txt -------------------------------------------------------------------------------- /examples/return_value/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/return_value/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/client/Main.cpp -------------------------------------------------------------------------------- /examples/return_value/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/return_value/library/return_value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/return_value.xml -------------------------------------------------------------------------------- /examples/return_value/library/return_value_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/return_value_params.xml -------------------------------------------------------------------------------- /examples/return_value/library/source/FirstNameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/source/FirstNameImpl.h -------------------------------------------------------------------------------- /examples/return_value/library/source/LastNameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/source/LastNameImpl.h -------------------------------------------------------------------------------- /examples/return_value/library/source/MiddleNameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/source/MiddleNameImpl.h -------------------------------------------------------------------------------- /examples/return_value/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/return_value/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /examples/return_value/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/return_value/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/return_value/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/return_value/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/CMakeLists.txt -------------------------------------------------------------------------------- /examples/template/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/template/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/client/Main.cpp -------------------------------------------------------------------------------- /examples/template/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/template/library/source/ModelImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/library/source/ModelImpl.h -------------------------------------------------------------------------------- /examples/template/library/source/PositionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/library/source/PositionImpl.h -------------------------------------------------------------------------------- /examples/template/library/source/VectorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/library/source/VectorImpl.h -------------------------------------------------------------------------------- /examples/template/library/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/library/template.xml -------------------------------------------------------------------------------- /examples/template/library/template_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/library/template_params.xml -------------------------------------------------------------------------------- /examples/template/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/template/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/template/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/template/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/unit_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/CMakeLists.txt -------------------------------------------------------------------------------- /examples/unit_test/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/unit_test/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/client/Main.cpp -------------------------------------------------------------------------------- /examples/unit_test/client/StaticEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/client/StaticEqual.h -------------------------------------------------------------------------------- /examples/unit_test/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/unit_test/library/source/AddressImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/library/source/AddressImpl.h -------------------------------------------------------------------------------- /examples/unit_test/library/source/NameImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/library/source/NameImpl.h -------------------------------------------------------------------------------- /examples/unit_test/library/source/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/library/source/PersonImpl.h -------------------------------------------------------------------------------- /examples/unit_test/library/unit_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/library/unit_test.xml -------------------------------------------------------------------------------- /examples/unit_test/library/unit_test_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/unit_test/library/unit_test_params.xml -------------------------------------------------------------------------------- /examples/virtual_interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/CMakeLists.txt -------------------------------------------------------------------------------- /examples/virtual_interface/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/virtual_interface/client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/client/Main.cpp -------------------------------------------------------------------------------- /examples/virtual_interface/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/CMakeLists.txt -------------------------------------------------------------------------------- /examples/virtual_interface/library/source/CircleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/source/CircleFactory.cpp -------------------------------------------------------------------------------- /examples/virtual_interface/library/source/CircleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/source/CircleFactory.h -------------------------------------------------------------------------------- /examples/virtual_interface/library/source/IShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/source/IShape.h -------------------------------------------------------------------------------- /examples/virtual_interface/library/source/RectangleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/source/RectangleFactory.cpp -------------------------------------------------------------------------------- /examples/virtual_interface/library/source/RectangleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/source/RectangleFactory.h -------------------------------------------------------------------------------- /examples/virtual_interface/library/source/TriangleFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/source/TriangleFactory.cpp -------------------------------------------------------------------------------- /examples/virtual_interface/library/source/TriangleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/source/TriangleFactory.h -------------------------------------------------------------------------------- /examples/virtual_interface/library/virtual_interface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/virtual_interface.xml -------------------------------------------------------------------------------- /examples/virtual_interface/library/virtual_interface_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/library/virtual_interface_params.xml -------------------------------------------------------------------------------- /examples/virtual_interface/sharp_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/sharp_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/virtual_interface/sharp_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/sharp_client/Program.cs -------------------------------------------------------------------------------- /examples/virtual_interface/sharp_client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/examples/virtual_interface/sharp_client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /scripts/appveyor/compiler_setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/scripts/appveyor/compiler_setup.bat -------------------------------------------------------------------------------- /source/ArgumentGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ArgumentGenerator.py -------------------------------------------------------------------------------- /source/BuiltinTypeGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/BuiltinTypeGenerator.py -------------------------------------------------------------------------------- /source/CSharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/CSharp.py -------------------------------------------------------------------------------- /source/Callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Callbacks.py -------------------------------------------------------------------------------- /source/Capi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Capi.py -------------------------------------------------------------------------------- /source/Capi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Capi.xsd -------------------------------------------------------------------------------- /source/CapiGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/CapiGenerator.py -------------------------------------------------------------------------------- /source/CapiParams.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/CapiParams.xsd -------------------------------------------------------------------------------- /source/CheckBinaryCompatibilityGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/CheckBinaryCompatibilityGenerator.py -------------------------------------------------------------------------------- /source/ClassGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ClassGenerator.py -------------------------------------------------------------------------------- /source/CreateGenerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/CreateGenerators.py -------------------------------------------------------------------------------- /source/CustomerCallbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/CustomerCallbacks.py -------------------------------------------------------------------------------- /source/DocumentationGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/DocumentationGenerator.py -------------------------------------------------------------------------------- /source/DoxygenCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/DoxygenCpp.py -------------------------------------------------------------------------------- /source/DynamicLoaderGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/DynamicLoaderGenerator.py -------------------------------------------------------------------------------- /source/EnumGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/EnumGenerator.py -------------------------------------------------------------------------------- /source/ExceptionTraits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ExceptionTraits.py -------------------------------------------------------------------------------- /source/ExtensionSemantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ExtensionSemantic.py -------------------------------------------------------------------------------- /source/ExternalClassGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ExternalClassGenerator.py -------------------------------------------------------------------------------- /source/ExternalEnumGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ExternalEnumGenerator.py -------------------------------------------------------------------------------- /source/ExternalNamespaceGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ExternalNamespaceGenerator.py -------------------------------------------------------------------------------- /source/FileCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/FileCache.py -------------------------------------------------------------------------------- /source/FileGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/FileGenerator.py -------------------------------------------------------------------------------- /source/Helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Helpers.py -------------------------------------------------------------------------------- /source/InheritanceTraits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/InheritanceTraits.py -------------------------------------------------------------------------------- /source/LibraryCallbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/LibraryCallbacks.py -------------------------------------------------------------------------------- /source/LifecycleTraits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/LifecycleTraits.py -------------------------------------------------------------------------------- /source/MethodGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/MethodGenerator.py -------------------------------------------------------------------------------- /source/NamespaceGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/NamespaceGenerator.py -------------------------------------------------------------------------------- /source/NatvisGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/NatvisGenerator.py -------------------------------------------------------------------------------- /source/OverloadSuffixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/OverloadSuffixes.py -------------------------------------------------------------------------------- /source/ParamsParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ParamsParser.py -------------------------------------------------------------------------------- /source/ParseRoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ParseRoot.py -------------------------------------------------------------------------------- /source/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Parser.py -------------------------------------------------------------------------------- /source/Properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Properties.py -------------------------------------------------------------------------------- /source/RunTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/RunTests.py -------------------------------------------------------------------------------- /source/StaticLoaderGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/StaticLoaderGenerator.py -------------------------------------------------------------------------------- /source/TemplateGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/TemplateGenerator.py -------------------------------------------------------------------------------- /source/Templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Templates.py -------------------------------------------------------------------------------- /source/ThisArgumentGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/ThisArgumentGenerator.py -------------------------------------------------------------------------------- /source/UnitTestGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/UnitTestGenerator.py -------------------------------------------------------------------------------- /source/Xsd2Markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Xsd2Markdown.py -------------------------------------------------------------------------------- /source/Xsd2Python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/Xsd2Python3.py -------------------------------------------------------------------------------- /source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/source/__init__.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/current_backuped_results/boost_shared_ptr/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/boost_shared_ptr/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/boost_shared_ptr/boost_shared_ptr.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/boost_shared_ptr/boost_shared_ptr.run -------------------------------------------------------------------------------- /tests/current_backuped_results/boost_shared_ptr/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/boost_shared_ptr/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/boost_shared_ptr/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/boost_shared_ptr/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/boost_shared_ptr/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/boost_shared_ptr/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/callback.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/callback.run -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Example/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Example/Person.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Example/PersonDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Example/PersonDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Example/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Example/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Example/PrinterCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Example/PrinterCallback.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Example/PrinterCallbackDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Example/PrinterCallbackDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Example/PrinterDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Example/PrinterDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/ExampleEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/ExampleEnums.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/BadArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/BadArgument.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/BadArgumentDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/BadArgumentDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/DivisionByZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/DivisionByZero.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/DivisionByZeroDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/DivisionByZeroDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/Generic.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/GenericDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/GenericDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/NullArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/NullArgument.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/Exception/NullArgumentDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/Exception/NullArgumentDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/ExceptionCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/ExceptionCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/include/ExceptionFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/include/ExceptionFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/snippets/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/snippets/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/snippets/Example/IPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/snippets/Example/IPrinter.h -------------------------------------------------------------------------------- /tests/current_backuped_results/callback/snippets/Example/PersonImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/callback/snippets/Example/PersonImpl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/circular_reference/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/circular_reference/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/circular_reference/circular_reference.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/circular_reference/circular_reference.run -------------------------------------------------------------------------------- /tests/current_backuped_results/circular_reference/include/Circular/Circular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/circular_reference/include/Circular/Circular.h -------------------------------------------------------------------------------- /tests/current_backuped_results/circular_reference/include/Circular/ClassA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/circular_reference/include/Circular/ClassA.h -------------------------------------------------------------------------------- /tests/current_backuped_results/circular_reference/include/Circular/ClassB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/circular_reference/include/Circular/ClassB.h -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/clanguage.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/clanguage.run -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/include/Example/Dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/include/Example/Dumper.h -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/include/Example/DumperDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/include/Example/DumperDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/include/Example/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/include/Example/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/include/Example/PrinterDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/include/Example/PrinterDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/clanguage/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/clanguage/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/class_wrap_name/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/class_wrap_name/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/class_wrap_name/class_wrap_name.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/class_wrap_name/class_wrap_name.run -------------------------------------------------------------------------------- /tests/current_backuped_results/class_wrap_name/include/ClassWrapName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/class_wrap_name/include/ClassWrapName.h -------------------------------------------------------------------------------- /tests/current_backuped_results/class_wrap_name/include/ClassWrapName/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/class_wrap_name/include/ClassWrapName/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/class_wrap_name/include/ClassWrapNameCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/class_wrap_name/include/ClassWrapNameCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/class_wrap_name/include/ClassWrapNameFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/class_wrap_name/include/ClassWrapNameFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/copy_semantic.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/copy_semantic.run -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/include/Example/Dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/include/Example/Dumper.h -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/include/Example/DumperDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/include/Example/DumperDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/include/Example/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/include/Example/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/include/Example/PrinterDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/include/Example/PrinterDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/copy_semantic/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/copy_semantic/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/custom_suffix/agen_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/custom_suffix/agen_wrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/custom_suffix/custom_suffix.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/custom_suffix/custom_suffix.run -------------------------------------------------------------------------------- /tests/current_backuped_results/custom_suffix/include/hello_world/hello_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/custom_suffix/include/hello_world/hello_world.h -------------------------------------------------------------------------------- /tests/current_backuped_results/custom_suffix/include/hello_world/plotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/custom_suffix/include/hello_world/plotter.h -------------------------------------------------------------------------------- /tests/current_backuped_results/custom_suffix/include/hello_world/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/custom_suffix/include/hello_world/printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/custom_suffix/include/hello_world/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/custom_suffix/include/hello_world/scanner.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/down_cast.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/down_cast.run -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/DownCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/DownCast.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/ICircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/ICircle.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/ICircleDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/ICircleDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/IPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/IPolygon.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/IPolygonDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/IPolygonDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/IShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/IShape.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/IShapeDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/IShapeDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/ISquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/ISquare.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/ISquareDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/ISquareDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/ITriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/ITriangle.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/Example/ITriangleDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/Example/ITriangleDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/down_cast/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/down_cast/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/doxygen_doc.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/doxygen_doc.run -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Address.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/AddressDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/AddressDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Name.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/NameDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/NameDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Person.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/PersonDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/PersonDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/PrinterDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDoc/PrinterDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDocCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDocCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/doxygen_doc/include/DoxygenDocFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/doxygen_doc/include/DoxygenDocFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/exception.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/exception.run -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Example/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Example/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Example/PrinterDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Example/PrinterDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Example/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Example/Scanner.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Example/ScannerDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Example/ScannerDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception/BadArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception/BadArgument.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception/BadArgumentDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception/BadArgumentDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception/DivisionByZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception/DivisionByZero.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception/Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception/Generic.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception/GenericDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception/GenericDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception/NullArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception/NullArgument.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/Exception/NullArgumentDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/Exception/NullArgumentDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/ExceptionCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/ExceptionCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/exception/include/ExceptionFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/exception/include/ExceptionFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Classes/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Classes/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Classes/include/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Classes/include/Classes.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Classes/include/Classes/ClassA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Classes/include/Classes/ClassA.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Classes/include/Classes/ClassB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Classes/include/Classes/ClassB.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Classes/include/Classes/ClassC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Classes/include/Classes/ClassC.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Classes/include/ClassesCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Classes/include/ClassesCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Classes/include/ClassesFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Classes/include/ClassesFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/CompC/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/CompC/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/CompC/include/CompC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/CompC/include/CompC.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/CompC/include/CompC/ComponentC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/CompC/include/CompC/ComponentC.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/CompC/include/CompCCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/CompC/include/CompCCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/CompC/include/CompCFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/CompC/include/CompCFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Components/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Components/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Components/include/Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Components/include/Components.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Printer/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Printer/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Printer/include/PrinterNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Printer/include/PrinterNS.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Printer/include/PrinterNSCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Printer/include/PrinterNSCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/Printer/include/PrinterNSFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/Printer/include/PrinterNSFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/external_class/external_class.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/external_class/external_class.run -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/Example/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/Example/Geometry.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/Example/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/Example/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/Example/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/Example/Scene.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/Sample.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/Sample/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/Sample/Data.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/Sample/DataDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/Sample/DataDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/SampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/SampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/include/SampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/include/SampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test00/test00.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test00/test00.run -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test01/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test01/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test01/include/Example/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test01/include/Example/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test01/include/Example/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test01/include/Example/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test01/include/Sample/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test01/include/Sample/Data.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test01/include/Sample/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test01/include/Sample/Sample.h -------------------------------------------------------------------------------- /tests/current_backuped_results/file_options/test01/test01.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/file_options/test01/test01.run -------------------------------------------------------------------------------- /tests/current_backuped_results/hello_world/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/hello_world/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/hello_world/hello_world.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/hello_world/hello_world.run -------------------------------------------------------------------------------- /tests/current_backuped_results/hello_world/include/HelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/hello_world/include/HelloWorld.h -------------------------------------------------------------------------------- /tests/current_backuped_results/hello_world/include/HelloWorld/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/hello_world/include/HelloWorld/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/hello_world/include/HelloWorld/PrinterDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/hello_world/include/HelloWorld/PrinterDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/hello_world/include/HelloWorldCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/hello_world/include/HelloWorldCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/hello_world/include/HelloWorldFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/hello_world/include/HelloWorldFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/implementation_code.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/implementation_code.run -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/Community.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/Community.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/Exception.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/Person.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/PersonDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/PersonDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/String.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/StringDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/StringDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/Vectorchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/Vectorchar.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STL/Vectorint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STL/Vectorint.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STLCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STLCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/implementation_code/include/STLFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/implementation_code/include/STLFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mapped_types/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mapped_types/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/mapped_types/include/MappedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mapped_types/include/MappedTypes.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mapped_types/include/MappedTypes/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mapped_types/include/MappedTypes/Device.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mapped_types/include/MappedTypes/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mapped_types/include/MappedTypes/Person.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mapped_types/include/MappedTypesCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mapped_types/include/MappedTypesCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mapped_types/include/MappedTypesFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mapped_types/include/MappedTypesFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mapped_types/mapped_types.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mapped_types/mapped_types.run -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic/include/MixedSemantic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic/include/MixedSemantic.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic/include/MixedSemantic/Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic/include/MixedSemantic/Name.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic/include/MixedSemanticCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic/include/MixedSemanticCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic/include/MixedSemanticFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic/include/MixedSemanticFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic/mixed_semantic.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic/mixed_semantic.run -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic2/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic2/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic2/include/MixedSemantic2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic2/include/MixedSemantic2.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic2/include/MixedSemantic2Capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic2/include/MixedSemantic2Capi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic2/include/MixedSemantic2Fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic2/include/MixedSemantic2Fwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/mixed_semantic2/mixed_semantic2.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/mixed_semantic2/mixed_semantic2.run -------------------------------------------------------------------------------- /tests/current_backuped_results/object_parameter/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/object_parameter/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/object_parameter/include/Example/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/object_parameter/include/Example/Document.h -------------------------------------------------------------------------------- /tests/current_backuped_results/object_parameter/include/Example/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/object_parameter/include/Example/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/object_parameter/include/Example/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/object_parameter/include/Example/Page.h -------------------------------------------------------------------------------- /tests/current_backuped_results/object_parameter/include/Example/PageDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/object_parameter/include/Example/PageDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/object_parameter/object_parameter.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/object_parameter/object_parameter.run -------------------------------------------------------------------------------- /tests/current_backuped_results/overload_suffix/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/overload_suffix/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/overload_suffix/include/OverloadSuffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/overload_suffix/include/OverloadSuffix.h -------------------------------------------------------------------------------- /tests/current_backuped_results/overload_suffix/include/OverloadSuffixCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/overload_suffix/include/OverloadSuffixCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/overload_suffix/include/OverloadSuffixFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/overload_suffix/include/OverloadSuffixFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/overload_suffix/overload_suffix.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/overload_suffix/overload_suffix.run -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSet.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSet/PointSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSet/PointSet.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSet/PointSetDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSet/PointSetDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSet/Points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSet/Points.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSet/PointsDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSet/PointsDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSet/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSet/Position.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSet/PositionDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSet/PositionDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSetCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSetCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/include/PointSetFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/include/PointSetFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/point_set/point_set.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/point_set/point_set.run -------------------------------------------------------------------------------- /tests/current_backuped_results/raw_pointer_semantic/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/raw_pointer_semantic/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/raw_pointer_semantic/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/raw_pointer_semantic/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/raw_pointer_semantic/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/raw_pointer_semantic/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/raw_pointer_semantic/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/raw_pointer_semantic/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/reference_counted/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/reference_counted/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/reference_counted/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/reference_counted/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/reference_counted/include/Example/Dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/reference_counted/include/Example/Dumper.h -------------------------------------------------------------------------------- /tests/current_backuped_results/reference_counted/include/Example/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/reference_counted/include/Example/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/reference_counted/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/reference_counted/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/reference_counted/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/reference_counted/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/reference_counted/reference_counted.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/reference_counted/reference_counted.run -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/include/ReturnValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/include/ReturnValue.h -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/include/ReturnValue/FirstName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/include/ReturnValue/FirstName.h -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/include/ReturnValue/LastName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/include/ReturnValue/LastName.h -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/include/ReturnValue/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/include/ReturnValue/Person.h -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/include/ReturnValue/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/include/ReturnValue/Printer.h -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/include/ReturnValueCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/include/ReturnValueCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/include/ReturnValueFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/include/ReturnValueFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/return_value/return_value.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/return_value/return_value.run -------------------------------------------------------------------------------- /tests/current_backuped_results/template/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/Modeldouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/Modeldouble.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/ModeldoubleDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/ModeldoubleDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/Modelfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/Modelfloat.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/ModelfloatDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/ModelfloatDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/Position4Ddouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/Position4Ddouble.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/Position4Dfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/Position4Dfloat.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/Positiondouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/Positiondouble.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/Positionfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/Positionfloat.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/PositionfloatDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/PositionfloatDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/VectorOfchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/VectorOfchar.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/VectorOfcharDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/VectorOfcharDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/VectorOfdouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/VectorOfdouble.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/VectorOfint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/VectorOfint.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Example/VectorOfintDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Example/VectorOfintDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/include/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/include/Template.h -------------------------------------------------------------------------------- /tests/current_backuped_results/template/template.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/template/template.run -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTest.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTest/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTest/Address.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTest/AddressDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTest/AddressDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTest/Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTest/Name.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTest/NameDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTest/NameDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTest/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTest/Person.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTest/PersonDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTest/PersonDecl.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTestCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTestCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/include/UnitTestFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/include/UnitTestFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/unit_test/unit_test.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/unit_test/unit_test.run -------------------------------------------------------------------------------- /tests/current_backuped_results/virtual_interface/AGenWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/virtual_interface/AGenWrap.cpp -------------------------------------------------------------------------------- /tests/current_backuped_results/virtual_interface/include/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/virtual_interface/include/Example.h -------------------------------------------------------------------------------- /tests/current_backuped_results/virtual_interface/include/Example/IShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/virtual_interface/include/Example/IShape.h -------------------------------------------------------------------------------- /tests/current_backuped_results/virtual_interface/include/ExampleCapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/virtual_interface/include/ExampleCapi.h -------------------------------------------------------------------------------- /tests/current_backuped_results/virtual_interface/include/ExampleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/virtual_interface/include/ExampleFwd.h -------------------------------------------------------------------------------- /tests/current_backuped_results/virtual_interface/virtual_interface.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/current_backuped_results/virtual_interface/virtual_interface.run -------------------------------------------------------------------------------- /tests/file_options/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/CMakeLists.txt -------------------------------------------------------------------------------- /tests/file_options/clients/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/clients/Main.cpp -------------------------------------------------------------------------------- /tests/file_options/library/file_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/file_options.xml -------------------------------------------------------------------------------- /tests/file_options/library/source/BodyImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/BodyImpl.cpp -------------------------------------------------------------------------------- /tests/file_options/library/source/BodyImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/BodyImpl.h -------------------------------------------------------------------------------- /tests/file_options/library/source/DataImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/DataImpl.cpp -------------------------------------------------------------------------------- /tests/file_options/library/source/DataImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/DataImpl.h -------------------------------------------------------------------------------- /tests/file_options/library/source/NodeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/NodeImpl.cpp -------------------------------------------------------------------------------- /tests/file_options/library/source/NodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/NodeImpl.h -------------------------------------------------------------------------------- /tests/file_options/library/source/PrinterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/PrinterImpl.cpp -------------------------------------------------------------------------------- /tests/file_options/library/source/PrinterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/PrinterImpl.h -------------------------------------------------------------------------------- /tests/file_options/library/source/SphereImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/SphereImpl.cpp -------------------------------------------------------------------------------- /tests/file_options/library/source/SphereImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/source/SphereImpl.h -------------------------------------------------------------------------------- /tests/file_options/library/test00_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/test00_params.xml -------------------------------------------------------------------------------- /tests/file_options/library/test01_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PetrPPetrov/beautiful-capi/HEAD/tests/file_options/library/test01_params.xml --------------------------------------------------------------------------------