aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-12-16 20:35:57 -0500
committerDavid Robillard <d@drobilla.net>2021-12-16 20:35:57 -0500
commit5ad1447d074939825ee5bb4f1944a4e17d80d1c6 (patch)
tree2a4792242b9962ef0da5fbae014a3833643f6ddf /src
parentd54309d0716173c1fe3f5c7e9812e42722f79bc9 (diff)
downloadpugl-5ad1447d074939825ee5bb4f1944a4e17d80d1c6.tar.gz
pugl-5ad1447d074939825ee5bb4f1944a4e17d80d1c6.tar.bz2
pugl-5ad1447d074939825ee5bb4f1944a4e17d80d1c6.zip
Add puglGetClassName()
Diffstat (limited to 'src')
-rw-r--r--src/implementation.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/implementation.c b/src/implementation.c
index df30730..145d53b 100644
--- a/src/implementation.c
+++ b/src/implementation.c
@@ -137,6 +137,12 @@ puglSetClassName(PuglWorld* const world, const char* const name)
return PUGL_SUCCESS;
}
+const char*
+puglGetClassName(const PuglWorld* world)
+{
+ return world->className;
+}
+
PuglView*
puglNewView(PuglWorld* const world)
{