-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPrompts.h
37 lines (34 loc) · 876 Bytes
/
Prompts.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
#include "PowerSolutions.Interop.h"
namespace PowerSolutions
{
namespace Interop
{
private ref class Prompts
{
private:
static ::System::Resources::ResourceManager^ m_ResourceManager = nullptr;
public:
static property ::System::Resources::ResourceManager^ ResourceManager
{
::System::Resources::ResourceManager^ get() { return m_ResourceManager; }
}
static Prompts();
public:
static property String^ PowerSolutionException
{
String^ get() { return ResourceManager->GetString("PowerSolutionException"); }
}
static property String^ PowerSolutionCRTException
{
String^ get() { return ResourceManager->GetString("PowerSolutionCRTException"); }
}
static property String^ NotIterating
{
String^ get() { return ResourceManager->GetString("NotIterating"); }
}
private:
Prompts() {};
};
}
}