summaryrefslogtreecommitdiff
path: root/shell/inc/types.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'shell/inc/types.hxx')
-rw-r--r--shell/inc/types.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/shell/inc/types.hxx b/shell/inc/types.hxx
index 6834bc60963d..140d03245199 100644
--- a/shell/inc/types.hxx
+++ b/shell/inc/types.hxx
@@ -31,9 +31,9 @@
// XmlTags_t, tags defined with tag name and xml tag.
// Contents: Definitions of xml tag used in parser.
-typedef std::map<std::wstring, std::wstring> XmlTagAttributes_t;
-typedef std::pair<std::wstring, XmlTagAttributes_t> XmlTag_t;
-typedef std::map<std::wstring, XmlTag_t> XmlTags_t;
+typedef std::map<std::wstring, std::wstring> XmlTagAttributes_t;
+typedef std::pair<std::wstring, XmlTagAttributes_t> XmlTag_t;
+typedef std::map<std::wstring, XmlTag_t> XmlTags_t;
const XmlTag_t EMPTY_XML_TAG = std::make_pair(std::wstring(), XmlTagAttributes_t());
@@ -45,14 +45,14 @@ const XmlTag_t EMPTY_XML_TAG = std::make_pair(std::wstring(), XmlTagAttributes_t
typedef ::std::wstring Language_t;
typedef ::std::wstring Country_t;
-typedef ::std::pair<Language_t, Country_t > LocaleSet_t;
+typedef ::std::pair<Language_t, Country_t> LocaleSet_t;
typedef ::std::wstring Content_t;
-typedef ::std::pair<LocaleSet_t, Content_t > Chunk_t;
-typedef ::std::vector< Chunk_t > ChunkBuffer_t;
+typedef ::std::pair<LocaleSet_t, Content_t> Chunk_t;
+typedef ::std::vector<Chunk_t> ChunkBuffer_t;
const LocaleSet_t EMPTY_LOCALE = ::std::make_pair(::std::wstring(), ::std::wstring());
-const Chunk_t EMPTY_CHUNK = ::std::make_pair( EMPTY_LOCALE, ::std::wstring());
+const Chunk_t EMPTY_CHUNK = ::std::make_pair(EMPTY_LOCALE, ::std::wstring());
//+-------------------------------------------------------------------------
// Declare: StyleName_t, style name of a style-locale pair.
@@ -60,18 +60,18 @@ const Chunk_t EMPTY_CHUNK = ::std::make_pair( EMPTY_LOCALE, ::std::wstring());
// Contents: Definitions of Style Names.
typedef ::std::wstring StyleName_t;
-typedef ::std::pair <StyleName_t, LocaleSet_t> StyleLocalePair_t;
-typedef ::std::map<StyleName_t, LocaleSet_t> StyleLocaleMap_t;
+typedef ::std::pair<StyleName_t, LocaleSet_t> StyleLocalePair_t;
+typedef ::std::map<StyleName_t, LocaleSet_t> StyleLocaleMap_t;
-const StyleLocalePair_t EMPTY_STYLELOCALE_PAIR = ::std::make_pair(::std::wstring(), EMPTY_LOCALE );
+const StyleLocalePair_t EMPTY_STYLELOCALE_PAIR = ::std::make_pair(::std::wstring(), EMPTY_LOCALE);
class StreamInterface
{
public:
virtual ~StreamInterface() {}
- virtual unsigned long sread (unsigned char* vuf, unsigned long size) = 0;
- virtual long stell () = 0;
- virtual long sseek (long offset, int origin) = 0;
+ virtual unsigned long sread(unsigned char* vuf, unsigned long size) = 0;
+ virtual long stell() = 0;
+ virtual long sseek(long offset, int origin) = 0;
};
#endif