Guiliani  Version 2.5 revision 7293 (documentation build 13)
GUIFontResourceException.h
1/*
2* Copyright (C) TES Electronic Solutions GmbH,
3* All Rights Reserved.
4* Contact: info@guiliani.de
5*
6* This file is part of the Guiliani HMI framework
7* for the development of graphical user interfaces on embedded systems.
8*/
9
10#ifndef __GUIFONTRESOURCEEXCEPTION_H__
11#define __GUIFONTRESOURCEEXCEPTION_H__
12
13#include "GUIResourceException.h"
14#include "GUIFontResource.h"
15
16class eC_String;
17
23{
24public:
25
30 CGUIFontResourceException(const eC_String& kResourcePath,
31 const FontResource_t eFntID);
32
36
41
47
52 virtual eC_String Report() const;
53
54 private:
56 FontResource_t m_eFntID;
57};
58#endif //__GUIFONTRESOURCEEXCEPTION_H__
Helper Macros in Guiliani
FontResource_t
List of font resource ids.
Definition: GUIFontResource.h:54
Font handling error.
Definition: GUIFontResourceException.h:23
CGUIFontResourceException & operator=(const CGUIFontResourceException &kSource)
CGUIFontResourceException(const CGUIFontResourceException &kSource)
CGUIFontResourceException(const eC_String &kResourcePath, const FontResource_t eFntID)
virtual eC_String Report() const
This is the exception class handling resources.
Definition: GUIResourceException.h:20