summaryrefslogtreecommitdiffstats
path: root/base/stringprintf.h
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-22 22:11:08 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-22 22:11:08 +0000
commitf53121d2c69801353feb2531446a1b1b93e576d4 (patch)
treeed081a0331dcb0df724fab00d043a1e5837e0857 /base/stringprintf.h
parenta75573d945926b844f7b1932b11088dd3956577d (diff)
downloadchromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.zip
chromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.tar.gz
chromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.tar.bz2
Base: First pass at having base.dll: definition of
BASE_API and a few files that use it. BUG=76996 TEST=none Review URL: http://codereview.chromium.org/6725001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79056 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/stringprintf.h')
-rw-r--r--base/stringprintf.h27
1 files changed, 16 insertions, 11 deletions
diff --git a/base/stringprintf.h b/base/stringprintf.h
index 9170ddd..fb32f20 100644
--- a/base/stringprintf.h
+++ b/base/stringprintf.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -9,37 +9,42 @@
#include <string>
+#include "base/base_api.h"
#include "base/compiler_specific.h"
namespace base {
// Return a C++ string given printf-like input.
-std::string StringPrintf(const char* format, ...) PRINTF_FORMAT(1, 2);
-std::wstring StringPrintf(const wchar_t* format, ...) WPRINTF_FORMAT(1, 2);
+BASE_API std::string StringPrintf(const char* format, ...) PRINTF_FORMAT(1, 2);
+BASE_API std::wstring StringPrintf(const wchar_t* format, ...)
+ WPRINTF_FORMAT(1, 2);
// Return a C++ string given vprintf-like input.
-std::string StringPrintV(const char* format, va_list ap) PRINTF_FORMAT(1, 0);
+BASE_API std::string StringPrintV(const char* format, va_list ap)
+ PRINTF_FORMAT(1, 0);
// Store result into a supplied string and return it.
-const std::string& SStringPrintf(std::string* dst, const char* format, ...)
+BASE_API const std::string& SStringPrintf(std::string* dst,
+ const char* format, ...)
PRINTF_FORMAT(2, 3);
-const std::wstring& SStringPrintf(std::wstring* dst,
- const wchar_t* format, ...)
+BASE_API const std::wstring& SStringPrintf(std::wstring* dst,
+ const wchar_t* format, ...)
WPRINTF_FORMAT(2, 3);
// Append result to a supplied string.
-void StringAppendF(std::string* dst, const char* format, ...)
+BASE_API void StringAppendF(std::string* dst, const char* format, ...)
PRINTF_FORMAT(2, 3);
// TODO(evanm): this is only used in a few places in the code;
// replace with string16 version.
-void StringAppendF(std::wstring* dst, const wchar_t* format, ...)
+BASE_API void StringAppendF(std::wstring* dst, const wchar_t* format, ...)
WPRINTF_FORMAT(2, 3);
// Lower-level routine that takes a va_list and appends to a specified
// string. All other routines are just convenience wrappers around it.
-void StringAppendV(std::string* dst, const char* format, va_list ap)
+BASE_API void StringAppendV(std::string* dst, const char* format, va_list ap)
PRINTF_FORMAT(2, 0);
-void StringAppendV(std::wstring* dst, const wchar_t* format, va_list ap)
+BASE_API void StringAppendV(std::wstring* dst,
+ const wchar_t* format, va_list ap)
WPRINTF_FORMAT(2, 0);
} // namespace base