summaryrefslogtreecommitdiffstats
path: root/src/util/shared-c-string-ptr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/shared-c-string-ptr.cpp')
-rw-r--r--src/util/shared-c-string-ptr.cpp50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/util/shared-c-string-ptr.cpp b/src/util/shared-c-string-ptr.cpp
deleted file mode 100644
index cedf18df4..000000000
--- a/src/util/shared-c-string-ptr.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * 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 :