blob: 51093e1b73b11db0d6c78e8349cc189a107c7dc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* MixerHandle.h
*
* Created on: 26 ����� 2018
* Author: shlomo
*/
#ifndef MODULES_IDS_MIXERHANDLER_H_
#define MODULES_IDS_MIXERHANDLER_H_
extern uint32_t MixerHandlerSwitchToWaste(void);
extern uint32_t MixerHandlerSwitchToHead(void);
extern uint32_t MixerHandlerGetState(void);
#endif /* MODULES_IDS_MIXERHANDLER_H_ */
an class="w"> System.Threading.Tasks;
using System.Windows.Media.Imaging;
namespace Tango.Scripting.Editors.Intellisense
{
public class PropertyCompletionItem : CompletionItem
{
private static BitmapSource image = GetImage("property.png");
public override string Text => Name;
public override CompletionItemPopupControl PopupControl => new PropertyCompletionItemPopup();
public override BitmapSource Image => image;
public String Name { get; set; }
public String Class { get; set; }
public String Type { get; set; }
}
}
|