summaryrefslogtreecommitdiffstats
path: root/src/util/shared-c-string-ptr.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-01-16 02:36:01 +0000
committermental <mental@users.sourceforge.net>2006-01-16 02:36:01 +0000
commit179fa413b047bede6e32109e2ce82437c5fb8d34 (patch)
treea5a6ac2c1708bd02288fbd8edb2ff500ff2e0916 /src/util/shared-c-string-ptr.cpp
downloadinkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz
inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/util/shared-c-string-ptr.cpp')
-rw-r--r--src/util/shared-c-string-ptr.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/util/shared-c-string-ptr.cpp b/src/util/shared-c-string-ptr.cpp
new file mode 100644
index 000000000..cedf18df4
--- /dev/null
+++ b/src/util/shared-c-string-ptr.cpp
@@ -0,0 +1,50 @@
+/*
+ * Inkscape::Util::SharedCStringPtr - shared and immutable strings
+ *
+ * Authors:
+ * MenTaLguY <mental@rydia.net>
+ *
+ * Copyright (C) 2004 MenTaLguY
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include <cstring>
+#include <glib/gmessages.h>
+#include "gc-core.h"
+#include "util/shared-c-string-ptr.h"
+
+namespace Inkscape {
+
+namespace Util {
+
+SharedCStringPtr SharedCStringPtr::copy(char const *string) {
+ g_return_val_if_fail(string != NULL, SharedCStringPtr::coerce(NULL));
+
+ return SharedCStringPtr::copy(string, std::strlen(string));
+}
+
+SharedCStringPtr SharedCStringPtr::copy(char const *string, size_t len) {
+ g_return_val_if_fail(string != NULL, SharedCStringPtr::coerce(NULL));
+
+ char *dup=new (GC::ATOMIC) gchar[len+1];
+ std::memcpy(dup, string, len);
+ dup[len] = '\000';
+
+ return SharedCStringPtr::coerce(dup);
+}
+
+}
+
+}
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :