summaryrefslogtreecommitdiffstats
path: root/include/ingen
AgeCommit message (Collapse)AuthorFilesLines
2022-09-27Use braced init lists to avoid repeating return typesDavid Robillard4-17/+16
2022-09-27Fix field shadowingDavid Robillard1-3/+3
2022-09-08Make learned MIDI bindings channel specificLoki Davison1-0/+1
2022-08-18Fix whitespaceDavid Robillard1-2/+7
2022-08-18Clean up special member functionsDavid Robillard2-1/+8
2022-08-18Fix indentationDavid Robillard1-8/+8
2022-08-18Remove redundant "inline" specifiersDavid Robillard7-40/+42
2022-08-18Use consistent spacing for line commentsDavid Robillard15-32/+33
2022-08-18Use consistent brace wrapping for namespacesDavid Robillard7-7/+21
2022-08-18Use consistent brace wrapping for class definitionsDavid Robillard16-21/+42
2022-08-18Use consistent brace wrapping for struct definitionsDavid Robillard4-36/+19
2022-08-18Use a consistent style for empty bracesDavid Robillard2-4/+2
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard4-9/+15
2022-08-18Use default member initializationDavid Robillard7-22/+20
2022-08-18Make empty methods and trivial constructors noexceptDavid Robillard5-12/+13
2022-08-18Use auto when declaring iteratorsDavid Robillard2-2/+2
2022-08-18Switch to meson build systemDavid Robillard2-6/+7
2022-08-18Separate export macro definitions between modulesDavid Robillard3-15/+45
2022-08-18Clean up includesDavid Robillard5-4/+3
2022-08-17Fully declare special member functionsDavid Robillard1-1/+6
2021-06-04Switch to C++14 and fix build with GCC 10David Robillard1-7/+0
GCC was having problems with this make_unique overload, but I don't care about C++11 compatibility at this point anyway, so it's easiest to just remove it.
2021-01-02Update for latest raulDavid Robillard27-103/+103
2020-12-15Clean up includes in client libraryDavid Robillard8-22/+34
2020-12-15Clean up includes in core and serverDavid Robillard19-19/+36
2020-08-03Clean up includesDavid Robillard5-3/+14
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check.
2020-08-02Remove Raul::managed_ptr aliasDavid Robillard1-5/+0
2020-08-02Remove std::shared_ptr aliasDavid Robillard26-216/+239
2020-08-02Remove redundant pointer get() callsDavid Robillard1-1/+1
2020-08-02Use nullptr for empty smart pointersDavid Robillard5-7/+7
2020-08-02Remove std::unique_ptr aliasDavid Robillard3-6/+5
2020-08-02Remove std::weak_ptr aliasDavid Robillard1-3/+0
2020-08-02Rename memory utility headerDavid Robillard24-27/+27
2020-08-02Fix shadow warningsDavid Robillard4-12/+12
2020-08-02Clean up URI map interfaceDavid Robillard1-3/+20
2020-08-02Add missing override specifiersDavid Robillard1-1/+1
2020-08-02Clean up include guardsDavid Robillard10-30/+30
2020-08-02Move public headers to a separate include directoryDavid Robillard55-0/+5194
This is more conventional and probably best practice (since it avoids polluting the include path with non-headers), and is supported by the clang-tidy llvm-header-guard check.
2012-03-15Remove weird "include" directory and use standard style ("ingen" directory ↵David Robillard37-2943/+0
in top level). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4063 a436a847-0d15-0410-975c-d299462d15a1
2012-03-15Use host-provided URI-map for internally mapped URIs.David Robillard1-1/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4061 a436a847-0d15-0410-975c-d299462d15a1
2012-03-14Consistently map all URIs with the URI map.David Robillard1-2/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4060 a436a847-0d15-0410-975c-d299462d15a1
2012-03-14Remove silly/slow Quark::c_str() since Quark derives from a string type anyway.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4059 a436a847-0d15-0410-975c-d299462d15a1
2012-03-14Use the host URI map/unmap when running as a plugin.David Robillard5-22/+69
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4058 a436a847-0d15-0410-975c-d299462d15a1
2012-03-12Move bundle patch finding stuff to ingen_lv2.cpp and simplify it to not requireDavid Robillard1-15/+0
the World. Remove all the heavyweight initialisation stuff from plugin library instantiation, just parse the manifest with Sord directly and don't initialise the World until the plugin is actually loaded. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4056 a436a847-0d15-0410-975c-d299462d15a1
2012-03-12Centralise atom creation in forge object.David Robillard6-25/+18
Aside from being more greppable and making realtime violations more obvious, this is a step towards using LV2 atoms internally (which needs a factory since the type numbers are dynamic). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4054 a436a847-0d15-0410-975c-d299462d15a1
2012-03-12Unify event response mechanism and make it more appropriate for wire ↵David Robillard4-19/+90
transmission. The downside being more cryptic error messages until the client side error reporting stuff gets more fancy, but the important part is that belongs client side. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4053 a436a847-0d15-0410-975c-d299462d15a1
2012-03-11Implement cv:CVPort (fix #790). Not well-tested, but at least works somewhat.David Robillard2-3/+7
Use new style LV2 URI defines (and fix invalid atom URIs). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4050 a436a847-0d15-0410-975c-d299462d15a1
2012-03-11Implement state save/restore when Ingen is an LV2 plugin.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4047 a436a847-0d15-0410-975c-d299462d15a1
2012-03-11Missing portion of previous commit (r4045).David Robillard1-9/+19
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4046 a436a847-0d15-0410-975c-d299462d15a1
2012-03-11Fix UI response to property changes like port value (fix #779).David Robillard2-11/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4045 a436a847-0d15-0410-975c-d299462d15a1
2012-03-10Rename ingen:canvas-x and ingen:canvas-y to ingen:canvasX and ingen:canvasY ↵David Robillard1-2/+2
to avoid writing illegal or ugly Turtle (`-' is not allowed in a local name). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4042 a436a847-0d15-0410-975c-d299462d15a1