Kaydet (Commit) d18a2753 authored tarafından Alexander Wilms's avatar Alexander Wilms Kaydeden (comit) Caolán McNamara

Remove visual noise from shell

Change-Id: I1857fd7a9aeda38cb8ef2a0eda7783203b7658ed
Reviewed-on: https://gerrit.libreoffice.org/8311Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 7d99ec7f
......@@ -36,9 +36,9 @@ public:
CColumnInfo(long RefCnt = 1);
virtual ~CColumnInfo();
//-----------------------------
// IUnknown methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
......@@ -48,9 +48,9 @@ public:
virtual ULONG STDMETHODCALLTYPE Release( void);
//-----------------------------
// IColumnProvider
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE Initialize(LPCSHCOLUMNINIT psci);
......
......@@ -43,13 +43,13 @@ extern FileExtensionEntry OOFileExtensionTable[];
extern size_t OOFileExtensionTableSize;
//---------------------------------
/** Return the extension of a file
name without the '.'
*/
std::string get_file_name_extension(const std::string& file_name);
//---------------------------------
/** Return the type of a file
*/
......
......@@ -37,9 +37,9 @@ public:
CInfoTip(long RefCnt = 1);
virtual ~CInfoTip();
//-----------------------------
// IUnknown methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
......@@ -49,23 +49,23 @@ public:
virtual ULONG STDMETHODCALLTYPE Release( void);
//----------------------------
// IQueryInfo methods
//----------------------------
virtual HRESULT STDMETHODCALLTYPE GetInfoTip(DWORD dwFlags, wchar_t** ppwszTip);
virtual HRESULT STDMETHODCALLTYPE GetInfoFlags(DWORD *pdwFlags);
//----------------------------
// IPersist methods
//----------------------------
virtual HRESULT STDMETHODCALLTYPE GetClassID(CLSID* pClassID);
//----------------------------
// IPersistFile methods
//----------------------------
virtual HRESULT STDMETHODCALLTYPE IsDirty(void);
......
......@@ -22,14 +22,14 @@
#include <string>
//-----------------------------------
/* Converts ISO 8601 conform date/time
represenation to the representation
conforming to the current locale
*/
std::wstring iso8601_date_to_local_date(const std::wstring& iso8601date);
//------------------------------------
/* Converts ISO 8601 conform duration
representation to the representation
conforming to the current locale
......
......@@ -43,32 +43,32 @@ public:
CPropertyHdl(long RefCnt = 1);
virtual ~CPropertyHdl();
//-----------------------------
// IUnknown methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
void __RPC_FAR *__RPC_FAR *ppvObject );
virtual ULONG STDMETHODCALLTYPE AddRef( void );
virtual ULONG STDMETHODCALLTYPE Release( void );
//-----------------------------
// IPropertyStore
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE GetCount( DWORD *pcProps );
virtual HRESULT STDMETHODCALLTYPE GetAt( DWORD iProp, PROPERTYKEY *pkey );
virtual HRESULT STDMETHODCALLTYPE GetValue( REFPROPERTYKEY key, PROPVARIANT *pPropVar );
virtual HRESULT STDMETHODCALLTYPE SetValue( REFPROPERTYKEY key, REFPROPVARIANT propVar );
virtual HRESULT STDMETHODCALLTYPE Commit();
//-----------------------------
// IPropertyStoreCapabilities
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE IsPropertyWritable( REFPROPERTYKEY key );
//-----------------------------
// IInitializeWithStream
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE Initialize(IStream *pStream, DWORD grfMode);
private:
......@@ -86,18 +86,18 @@ public:
CClassFactory( const CLSID& clsid );
virtual ~CClassFactory();
//-----------------------------
// IUnknown methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
void __RPC_FAR *__RPC_FAR *ppvObject);
virtual ULONG STDMETHODCALLTYPE AddRef( void );
virtual ULONG STDMETHODCALLTYPE Release( void );
//-----------------------------
// IClassFactory methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE CreateInstance(
IUnknown __RPC_FAR *pUnkOuter,
REFIID riid,
......
......@@ -39,9 +39,9 @@ public:
virtual ~CPropertySheet();
//-----------------------------
// IUnknown methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
......@@ -51,16 +51,16 @@ public:
virtual ULONG STDMETHODCALLTYPE Release( void);
//-----------------------------
// IShellExtInit
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE Initialize(
LPCITEMIDLIST pidlFolder, LPDATAOBJECT lpdobj, HKEY hkeyProgID);
//-----------------------------
// IShellPropSheetExt
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE AddPages(LPFNADDPROPSHEETPAGE lpfnAddPage, LPARAM lParam);
......
......@@ -20,9 +20,9 @@
#ifndef INCLUDED_SHELL_INC_INTERNAL_REGISTRY_HXX
#define INCLUDED_SHELL_INC_INTERNAL_REGISTRY_HXX
//-----------------------------
// registry helper functions
//-----------------------------
#if defined _MSC_VER
#pragma warning(push, 1)
......
......@@ -45,9 +45,9 @@ public:
CThumbviewer(long RefCnt = 1);
virtual ~CThumbviewer();
//-----------------------------
// IUnknown methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
......@@ -57,9 +57,9 @@ public:
virtual ULONG STDMETHODCALLTYPE Release( void);
//----------------------------
// IExtractImage methods
//----------------------------
virtual HRESULT STDMETHODCALLTYPE Extract(HBITMAP *phBmpImage);
......@@ -71,15 +71,15 @@ public:
DWORD dwRecClrDepth,
DWORD *pdwFlags);
//----------------------------
// IPersist methods
//----------------------------
virtual HRESULT STDMETHODCALLTYPE GetClassID(CLSID* pClassID);
//----------------------------
// IPersistFile methods
//----------------------------
virtual HRESULT STDMETHODCALLTYPE IsDirty();
......
......@@ -32,7 +32,7 @@ typedef std::vector<std::wstring> StringList_t;
// XmlTag_t, xml tag including content and attributes.
// XmlTags_t, tags defined with tag name and xml tag.
// Contents: Definitions of xml tag used in parser.
//--------------------------------------------------------------------------
typedef std::wstring Name_t;
typedef std::wstring Value_t;
typedef std::wstring Characters_t;
......@@ -48,7 +48,7 @@ const XmlTag_t EMPTY_XML_TAG = std::make_pair(std::wstring(), XmlTagAttributes_t
// Country_t, country of the Local pair
// LocaleSet_t, Local pair
// Contents: Definitions of Chunk properties.
//--------------------------------------------------------------------------
typedef ::std::wstring Language_t;
typedef ::std::wstring Country_t;
typedef ::std::pair<Language_t, Country_t > LocaleSet_t;
......@@ -64,7 +64,7 @@ const Chunk_t EMPTY_CHUNK = ::std::make_pair( EMPTY_LOCALE, ::std::wstring());
// Declare: StyleName_t, style name of a style-locale pair.
// StyleLocaleMap, the map of Styple-Locale pair.
// 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;
......
......@@ -60,37 +60,37 @@ extern "C" {
#endif
//---------------------------------
/** Convert a string to a wstring
using CP_ACP
*/
std::wstring StringToWString(const std::string& String);
//---------------------------------
/** Convert a wstring to a string
using CP_ACP
*/
std::string WStringToString(const std::wstring& String);
//---------------------------------
/** Convert a string to a wstring
using CP_UTF8
*/
std::wstring UTF8ToWString(const std::string& String);
//---------------------------------
/** Retrieve a string from the
resources of this module
*/
std::wstring GetResString(int ResId);
//---------------------------------
/** Returns whether we are running
on Windows XP or not
*/
bool is_windows_xp_or_above();
//---------------------------------
/** helper function to judge if the string is only has spaces.
@returns
<TRUE>if the provided string contains only but at least one space
......@@ -103,7 +103,7 @@ bool HasOnlySpaces(const std::wstring& String);
Windows Locale Identifier corresponding to input LocaleSet.
*/
//---------------------------------
/** Convert a long path name using Windows api call GetShortPathName
*/
std::wstring getShortPathName( const std::wstring& aLongName );
......@@ -111,7 +111,7 @@ std::wstring getShortPathName( const std::wstring& aLongName );
LCID LocaleSetToLCID( const LocaleSet_t & Locale );
//----------------------------------------------------------
#ifdef DEBUG
inline void OutputDebugStringFormat( LPCSTR pFormat, ... )
{
......@@ -127,7 +127,7 @@ static inline void OutputDebugStringFormat( LPCSTR, ... )
{
}
#endif
//----------------------------------------------------------
#endif
......
......@@ -23,7 +23,7 @@
#include <expat.h>
#include <stdexcept>
//-----------------------------------------------------
class xml_parser_exception : public std::runtime_error
{
public:
......@@ -48,10 +48,10 @@ public:
};
//-----------------------------------------------------
// Simple wrapper around expat, the xml parser library
// created by James Clark
//-----------------------------------------------------
class i_xml_parser_event_handler;
class xml_parser
......
......@@ -48,9 +48,9 @@ typedef enum {
sFTP
} ServiceType;
//------------------------------------------------------------------------
// helper functions
//------------------------------------------------------------------------
namespace // private
{
......@@ -150,26 +150,26 @@ bool GetProxySetting(ServiceType sType, char *host, size_t hostSize, UInt16 *por
} // end private namespace
//------------------------------------------------------------------------------
MacOSXBackend::MacOSXBackend()
{
}
//------------------------------------------------------------------------------
MacOSXBackend::~MacOSXBackend(void)
{
}
//------------------------------------------------------------------------------
MacOSXBackend* MacOSXBackend::createInstance()
{
return new MacOSXBackend;
}
// ---------------------------------------------------------------------------------------
rtl::OUString CFStringToOUString(const CFStringRef sOrig) {
CFRetain(sOrig);
......@@ -433,14 +433,14 @@ css::uno::Any MacOSXBackend::getPropertyValue(
}
}
//------------------------------------------------------------------------------
rtl::OUString SAL_CALL MacOSXBackend::getBackendName(void)
{
return rtl::OUString("com.sun.star.comp.configuration.backend.MacOSXBackend");
}
//------------------------------------------------------------------------------
rtl::OUString SAL_CALL MacOSXBackend::getImplementationName(void)
throw (uno::RuntimeException)
......
......@@ -28,9 +28,9 @@
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/uno/Reference.hxx>
//----------------------------------------------------------
// class declaration
//----------------------------------------------------------
class CmdMailMsg :
public cppu::WeakImplHelper2<
......@@ -51,9 +51,9 @@ public:
CmdMailMsg() {};
//------------------------------------------------
// XSimpleMailMessage
//------------------------------------------------
virtual void SAL_CALL setBody( const OUString& aBody )
throw (::com::sun::star::uno::RuntimeException);
......@@ -97,9 +97,9 @@ public:
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getAttachement( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
// XNameAccess
//------------------------------------------------
virtual ::com::sun::star::uno::Any SAL_CALL getByName( const OUString& aName )
throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
......@@ -110,9 +110,9 @@ public:
virtual sal_Bool SAL_CALL hasByName( const OUString& aName )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
// XElementAccess
//------------------------------------------------
virtual ::com::sun::star::uno::Type SAL_CALL getElementType( )
throw (::com::sun::star::uno::RuntimeException);
......
......@@ -29,9 +29,9 @@
#include <com/sun/star/system/XSimpleMailClientSupplier.hpp>
//----------------------------------------------------------
// class declaration
//----------------------------------------------------------
class CmdMailSuppl :
public cppu::WeakImplHelper3<
......@@ -45,16 +45,16 @@ class CmdMailSuppl :
public:
CmdMailSuppl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
//------------------------------------------------
// XSimpleMailClientSupplier
//------------------------------------------------
virtual ::com::sun::star::uno::Reference< ::com::sun::star::system::XSimpleMailClient > SAL_CALL querySimpleMailClient( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
// XSimpleMailClient
//------------------------------------------------
virtual ::com::sun::star::uno::Reference< ::com::sun::star::system::XSimpleMailMessage > SAL_CALL createSimpleMailMessage( )
throw (::com::sun::star::uno::RuntimeException);
......@@ -62,9 +62,9 @@ public:
virtual void SAL_CALL sendSimpleMailMessage( const ::com::sun::star::uno::Reference< ::com::sun::star::system::XSimpleMailMessage >& xSimpleMailMessage, sal_Int32 aFlag )
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
//------------------------------------------------
// XServiceInfo
//------------------------------------------------
virtual OUString SAL_CALL getImplementationName( )
throw(::com::sun::star::uno::RuntimeException);
......
......@@ -22,7 +22,7 @@
#include "defs.hxx"
//---------------------------------
/** Simple command line abstraction
*/
......
......@@ -28,9 +28,9 @@
#include <com/sun/star/system/XSystemShellExecute.hpp>
//----------------------------------------------------------
// class declaration
//----------------------------------------------------------
class ShellExec : public ::cppu::WeakImplHelper2< com::sun::star::system::XSystemShellExecute, com::sun::star::lang::XServiceInfo >
{
......@@ -41,16 +41,16 @@ class ShellExec : public ::cppu::WeakImplHelper2< com::sun::star::system::XSyste
public:
ShellExec(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext);
//------------------------------------------------
// XSystemShellExecute
//------------------------------------------------
virtual void SAL_CALL execute( const OUString& aCommand, const OUString& aParameter, sal_Int32 nFlags )
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::system::SystemShellExecuteException, ::com::sun::star::uno::RuntimeException);
//------------------------------------------------
// XServiceInfo
//------------------------------------------------
virtual OUString SAL_CALL getImplementationName( )
throw(::com::sun::star::uno::RuntimeException);
......
......@@ -28,28 +28,28 @@
class recently_used_file
{
public:
//----------------------------
recently_used_file();
//----------------------------
~recently_used_file();
//----------------------------
// set file pointer to the start of file
void reset() const;
//----------------------------
void truncate(off_t length = 0);
//----------------------------
size_t read(
char* buffer,
size_t size) const;
//----------------------------
void write(const char* buffer, size_t size) const;
//----------------------------
bool eof() const;
private:
......
......@@ -27,9 +27,9 @@
#include <com/sun/star/system/XSystemShellExecute.hpp>
//----------------------------------------------------------
// class declaration
//----------------------------------------------------------
class CSysShExecBase
{
......@@ -49,16 +49,16 @@ class CSysShExec :
public:
CSysShExec(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext);
//------------------------------------------------
// XSystemShellExecute
//------------------------------------------------
virtual void SAL_CALL execute( const OUString& aCommand, const OUString& aParameter, sal_Int32 nFlags )
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::system::SystemShellExecuteException, ::com::sun::star::uno::RuntimeException);
//------------------------------------------------
// XServiceInfo
//------------------------------------------------
virtual OUString SAL_CALL getImplementationName( )
throw(::com::sun::star::uno::RuntimeException);
......
......@@ -34,9 +34,9 @@ public:
CClassFactory(const CLSID& clsid);
virtual ~CClassFactory();
//-----------------------------
// IUnknown methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
......@@ -46,9 +46,9 @@ public:
virtual ULONG STDMETHODCALLTYPE Release(void);
//-----------------------------
// IClassFactory methods
//-----------------------------
virtual HRESULT STDMETHODCALLTYPE CreateInstance(
IUnknown __RPC_FAR *pUnkOuter,
......
......@@ -26,7 +26,7 @@
// the extension .sxw .sxi, etc) and ODF files and extract
// their content, author, keywords,subject,comments and title
// to be filtered.
//
// Platform: Windows 2000, Windows XP
#include "internal/contentreader.hxx"
......
......@@ -22,20 +22,20 @@
//+-------------------------------------------------------------------------
// Contents: LibreOffice filter declarations
// Platform: Windows 2000, Windows XP
//--------------------------------------------------------------------------
#pragma once
//+-------------------------------------------------------------------------
// forward declaration
//--------------------------------------------------------------------------
class CContentReader;
class CMetaInfoReader;
class CFullPropSpec;
//+-------------------------------------------------------------------------
// Global definitions
//--------------------------------------------------------------------------
long g_lInstances = 0; // Global count of COooFilter and COooFilterCF instances
GUID const guidStorage = PSGUID_STORAGE; // GUID for storage property set
......@@ -43,7 +43,7 @@ GUID const guidStorage = PSGUID_STORAGE; // GUID for storage property set
//C-------------------------------------------------------------------------
// Class: COooFilter
// Purpose: Implements interfaces of LibreOffice filter
//--------------------------------------------------------------------------
// OooFilter Class ID
// {7BC0E710-5703-45be-A29D-5D46D8B39262}
......@@ -163,7 +163,7 @@ private:
//C-------------------------------------------------------------------------
// Class: COooFilterCF
// Purpose: Implements class factory for LibreOffice filter
//--------------------------------------------------------------------------
class COooFilterCF : public IClassFactory
{
......
......@@ -19,7 +19,7 @@
//+-------------------------------------------------------------------------
// File: propspec.hxx
// Contents: C++ wrapper(s) for FULLPROPSPEC
//-------------------------------------------------------------------------
#pragma once
#if defined _MSC_VER
#pragma warning(push, 1)
......@@ -34,12 +34,12 @@
// Declare: CLSID_SummaryInforation, GUID
// CLSID_Storage, GUID
// Contents: Definitions of OpenOffice.org Document properties
//--------------------------------------------------------------------------
//+-------------------------------------------------------------------------
// Class: CFullPropertySpec
// Purpose: Describes full (PropertySet\Property) name of a property.
//--------------------------------------------------------------------------
class CFullPropSpec
{
......
......@@ -26,7 +26,7 @@
#include "internal/metainforeader.hxx"
//------------------------------------
struct statistic_item
{
......@@ -46,20 +46,20 @@ struct statistic_item
bool editable_;
};
//------------------------------------
typedef std::vector<statistic_item> statistic_item_list_t;
typedef std::pair<std::wstring, statistic_item_list_t> statistic_group_t;
typedef std::vector<statistic_group_t> statistic_group_list_t;
//------------------------------------
class document_statistic_reader;
typedef std::auto_ptr<document_statistic_reader> document_statistic_reader_ptr;
document_statistic_reader_ptr create_document_statistic_reader(const std::string& document_name, CMetaInfoReader* meta_info_accessor);
//------------------------------------
class document_statistic_reader
{
......@@ -85,7 +85,7 @@ private:
const std::string& document_name, CMetaInfoReader* meta_info_accessor);
};
//------------------------------------
class writer_document_statistic_reader : public document_statistic_reader
{
......@@ -98,7 +98,7 @@ protected:
const std::string& document_name, CMetaInfoReader* meta_info_accessor);
};
//------------------------------------
class calc_document_statistic_reader : public document_statistic_reader
{
......@@ -111,7 +111,7 @@ protected:
const std::string& document_name, CMetaInfoReader* meta_info_accessor);
};
//------------------------------------
class draw_impress_math_document_statistic_reader : public document_statistic_reader
{
......
......@@ -32,7 +32,7 @@
#include <memory>
#include "document_statistic.hxx"
//------------------------------------
class list_view_builder;
typedef std::auto_ptr<list_view_builder> list_view_builder_ptr;
......@@ -41,7 +41,7 @@ typedef std::auto_ptr<list_view_builder> list_view_builder_ptr;
list_view_builder_ptr create_list_view_builder(
HWND hwnd_lv, const std::wstring& col1, const std::wstring& col2);
//------------------------------------
class list_view_builder
{
......@@ -73,7 +73,7 @@ private:
friend list_view_builder_ptr create_list_view_builder(HWND hwnd_lv, const std::wstring& col1, const std::wstring& col2);
};
//------------------------------------
class winxp_list_view_builder : public list_view_builder
{
......
......@@ -25,9 +25,9 @@
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/system/XSimpleMailMessage2.hpp>
//----------------------------------------------------------
// class declaration
//----------------------------------------------------------
class CSmplMailMsg :
public cppu::WeakImplHelper1< com::sun::star::system::XSimpleMailMessage2 >
......@@ -41,7 +41,7 @@ public:
virtual ::rtl::OUString SAL_CALL getBody( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
virtual void SAL_CALL setRecipient( const OUString& aRecipient )
throw (::com::sun::star::uno::RuntimeException);
......@@ -49,7 +49,7 @@ public:
virtual OUString SAL_CALL getRecipient( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
virtual void SAL_CALL setCcRecipient( const ::com::sun::star::uno::Sequence< OUString >& aCcRecipient )
throw (::com::sun::star::uno::RuntimeException);
......@@ -57,7 +57,7 @@ public:
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getCcRecipient( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
virtual void SAL_CALL setBccRecipient( const ::com::sun::star::uno::Sequence< OUString >& aBccRecipient )
throw (::com::sun::star::uno::RuntimeException);
......@@ -65,7 +65,7 @@ public:
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getBccRecipient( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
virtual void SAL_CALL setOriginator( const OUString& aOriginator )
throw (::com::sun::star::uno::RuntimeException);
......@@ -73,7 +73,7 @@ public:
virtual OUString SAL_CALL getOriginator( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
virtual void SAL_CALL setSubject( const OUString& aSubject )
throw (::com::sun::star::uno::RuntimeException);
......@@ -81,7 +81,7 @@ public:
virtual OUString SAL_CALL getSubject( )
throw (::com::sun::star::uno::RuntimeException);
//------------------------------------------------
virtual void SAL_CALL setAttachement( const ::com::sun::star::uno::Sequence< OUString >& aAttachement )
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
......
......@@ -24,7 +24,7 @@
#include <stdexcept>
//------------------------------------------
/**
*/
class RuntimeException : public std::exception
......@@ -39,7 +39,7 @@ private:
int m_Error;
};
//------------------------------------------
/**
*/
class ZipException : public RuntimeException
......@@ -50,7 +50,7 @@ public:
virtual const char* what() const throw();
};
//------------------------------------------
/**
*/
class Win32Exception : public RuntimeException
......@@ -65,7 +65,7 @@ private:
void* m_MsgBuff;
};
//------------------------------------------
/**
*/
class ZipContentMissException : public ZipException
......@@ -74,7 +74,7 @@ public:
ZipContentMissException(int Error);
};
//------------------------------------------
/**
*/
class AccessViolationException : public Win32Exception
......@@ -83,7 +83,7 @@ public:
AccessViolationException(int Error);
};
//------------------------------------------
/**
*/
class IOException : public Win32Exception
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment