My Project
D:/source/c++/Programme/sally/sally/sallyAPI/ParameterNotificationOSM.h
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 #pragma once
00029 #include "Define.h"
00030 #include "ParameterBase.h"
00031 #include <string>
00032 
00033 namespace SallyAPI
00034 {
00035         namespace GUI
00036         {
00037                 namespace SendMessage
00038                 {
00047 
00048                         class DLL_API_SALLY CParameterNotificationOSM
00049                                 : public SallyAPI::GUI::SendMessage::CParameterBase
00050                         {
00051                         private:
00052                                 int                     m_iIcon;
00053                                 std::string     m_strText;
00054                                 int                     m_iProcessbar;
00055                         public:
00056                                 CParameterNotificationOSM(int icon, const std::string& text = "");
00057                                 CParameterNotificationOSM(int icon, int processbar);
00058                                 virtual ~CParameterNotificationOSM();
00059 
00060                                 std::string GetText();
00061                                 int                     GetIcon();
00062                                 int                     GetProcessbar();
00063                         };
00064                 }
00065         }
00066 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines